]> git.sur5r.net Git - openldap/commitdiff
Refine comments.
authorKurt Zeilenga <kurt@openldap.org>
Thu, 28 Oct 1999 17:42:46 +0000 (17:42 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 28 Oct 1999 17:42:46 +0000 (17:42 +0000)
libraries/liblutil/entropy.c

index 4e0b2ec17f759ee3bd1bb93eb439190a34993d9c..b7867839cf80e071161e507e6873a119d4eb55f9 100644 (file)
 /*
  * 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
                 */
 
                /*