diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-01-27 11:51:05 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-01-27 11:52:25 +0100 |
commit | 6e28ce9dbb230b52836dbce77f7e6a3a21d8eb6e (patch) | |
tree | ff7c54a1019f3b3d39d8dee4e478bc920f0a49f0 /lib/crypto-backend.h | |
parent | 4608500222e4b8e3a1c9886465bd0c10c07b5187 (diff) | |
download | gnutls-6e28ce9dbb230b52836dbce77f7e6a3a21d8eb6e.tar.gz |
Added gnutls_rnd_refresh().
Diffstat (limited to 'lib/crypto-backend.h')
-rw-r--r-- | lib/crypto-backend.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/crypto-backend.h b/lib/crypto-backend.h index 58c7530c0e..f807ce5d20 100644 --- a/lib/crypto-backend.h +++ b/lib/crypto-backend.h @@ -80,6 +80,7 @@ { int (*init) (void **ctx); int (*rnd) (void *ctx, int level, void *data, size_t datasize); + void (*rnd_refresh) (void *ctx); void (*deinit) (void *ctx); } gnutls_crypto_rnd_st; |