mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
Refine comments.
This commit is contained in:
parent
2aee8f8750
commit
5bb1546867
@ -24,10 +24,14 @@
|
||||
/*
|
||||
* lutil_entropy() provides nbytes of entropy in buf.
|
||||
* Quality offerred is suitable for one-time uses, such as "once" keys.
|
||||
* Values may not be suitable for multi-time uses.
|
||||
*
|
||||
* Note: Callers are encouraged to provide additional bytes of
|
||||
* of entropy in the buf argument. This information is used in
|
||||
* fallback mode to improve the quality of bytes returned.
|
||||
*
|
||||
* This routinue should be extended to support additional sources
|
||||
* of entropy.
|
||||
*/
|
||||
int lutil_entropy( char *buf, int nbytes )
|
||||
{
|
||||
@ -74,10 +78,11 @@ int lutil_entropy( char *buf, int nbytes )
|
||||
#else
|
||||
{
|
||||
/* based upon Phil Karn's "practical randomness" idea
|
||||
* but implementation 100% OpenLDAP. So don't blame Phil. */
|
||||
/* worse case is this is a MD5 hash of a counter, if
|
||||
* MD5 is a strong cryptographic hash, this should
|
||||
* be fairly resistant to attack
|
||||
* but implementation 100% OpenLDAP. So don't blame Phil.
|
||||
*
|
||||
* Worse case is that this is a MD5 hash of a counter, if
|
||||
* MD5 is a strong cryptographic hash, this should be fairly
|
||||
* resistant to attack
|
||||
*/
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user