Rename the rand_drbg_st data member "pool" to "seed_pool"
[openssl.git] / crypto / rand / rand_lcl.h
index 8abca4c2906a3d0661b6de774d0f7c7463b2d331..33b367c08becb2311fc00d30015bba85f74a2932 100644 (file)
@@ -203,7 +203,12 @@ struct rand_drbg_st {
      * with respect to how randomness is added to the RNG during reseeding
      * (see PR #4328).
      */
-    struct rand_pool_st *pool;
+    struct rand_pool_st *seed_pool;
+
+    /*
+     * Auxiliary pool for additional data.
+     */
+    struct rand_pool_st *adin_pool;
 
     /*
      * The following parameters are setup by the per-type "init" function.