diff options
author | Werner Koch <[email protected]> | 2025-03-14 12:03:46 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2025-03-14 12:08:37 +0000 |
commit | 926b1f1f1e3e382f08cc57fc86d5892649514007 (patch) | |
tree | ddc1bab10152c7de64a9c4167620f0683eac4a7f /src/gpgme.def | |
parent | m4: Update libassuan.m4. (diff) | |
download | gpgme-926b1f1f1e3e382f08cc57fc86d5892649514007.tar.gz gpgme-926b1f1f1e3e382f08cc57fc86d5892649514007.zip |
Add API gpgme_op_random_value.
* src/genrandom.c (getrandom_size_t): New.
(gpgme_op_random_value): New.
* src/gpgme.def: Add new function.
* src/libgpgme.vers: Ditto.
* src/gpgme.h.in: Add prototype.
* tests/run-genrandom.c: Add an option to use the new function.
--
The implementation is not optimized but sufficient for our use case.
Possible improvements for this and gpgme_op_random_bytes are a cache
for random bytes in the context so that we do not need to get out to
gpgme for just a few random bytes.
GnuPG-bug-id: 6694
Diffstat (limited to 'src/gpgme.def')
-rw-r--r-- | src/gpgme.def | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gpgme.def b/src/gpgme.def index d203901f..3bdaac4e 100644 --- a/src/gpgme.def +++ b/src/gpgme.def @@ -276,4 +276,5 @@ EXPORTS gpgme_op_setownertrust_start @214 gpgme_op_random_bytes @215 + gpgme_op_random_value @216 ; END |