diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2017-04-03 11:02:00 -0400 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2017-04-03 11:27:14 -0400 |
commit | c54a329b8166baf052935ef34fe19b7162bd2e80 (patch) | |
tree | 84134b29c08c0a579653441ed354fee52197d160 /stun/rand.h | |
parent | 6e45d1866ea92a019b9cd18642cb43123980b0ca (diff) | |
download | libnice-c54a329b8166baf052935ef34fe19b7162bd2e80.tar.gz |
stun: Rename rand function to make its strengh clear
It's only nonce level randomness, not long term key level.
Differential Revision: https://phabricator.freedesktop.org/D1711
Diffstat (limited to 'stun/rand.h')
-rw-r--r-- | stun/rand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stun/rand.h b/stun/rand.h index 0ed0263..4266a4f 100644 --- a/stun/rand.h +++ b/stun/rand.h @@ -45,6 +45,6 @@ #include <stdint.h> #endif -void nice_RAND_bytes (uint8_t *dst, int len); +void nice_RAND_nonce (uint8_t *dst, int len); #endif /* RAND_H */ |