summaryrefslogtreecommitdiffstats
path: root/include/crypto
diff options
context:
space:
mode:
authorRichard Henderson2019-03-14 03:33:48 +0100
committerRichard Henderson2019-05-22 18:38:54 +0200
commitd049b1f2afddd2d3a7b2ed22c274c66305c0b84b (patch)
tree61f74c2bf3412874c784be5ad43754f029952a7d /include/crypto
parentcrypto: Use getrandom for qcrypto_random_bytes (diff)
downloadqemu-d049b1f2afddd2d3a7b2ed22c274c66305c0b84b.tar.gz
qemu-d049b1f2afddd2d3a7b2ed22c274c66305c0b84b.tar.xz
qemu-d049b1f2afddd2d3a7b2ed22c274c66305c0b84b.zip
crypto: Change the qcrypto_random_bytes buffer type to void*
Using uint8_t* merely requires useless casts for use with other types to be filled with randomness. Reviewed-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/crypto')
-rw-r--r--include/crypto/random.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/crypto/random.h b/include/crypto/random.h
index 8764ca0562..fde592904e 100644
--- a/include/crypto/random.h
+++ b/include/crypto/random.h
@@ -34,7 +34,7 @@
*
* Returns 0 on success, -1 on error
*/
-int qcrypto_random_bytes(uint8_t *buf,
+int qcrypto_random_bytes(void *buf,
size_t buflen,
Error **errp);