Add ASN1_STRING_get0_data(), deprecate ASN1_STRING_data().
[openssl.git] / doc / crypto / RAND_set_rand_method.pod
index 533d577fa6e6f70af565200ba24145add2a390b8..02fe90ca89e03b791824b43f1a0a13c2d54ce5b5 100644 (file)
@@ -42,11 +42,11 @@ API is being used, so this function is no longer recommended.
         void (*cleanup)(void);
         void (*add)(const void *buf, int num, int entropy);
         int (*pseudorand)(unsigned char *buf, int num);
-       int (*status)(void);
+        int (*status)(void);
  } RAND_METHOD;
 
-The components point to the implementation of RAND_seed(),
-RAND_bytes(), RAND_cleanup(), RAND_add(), RAND_pseudo_rand()
+The components point to method implementations used by (or called by), in order,
+RAND_seed(), RAND_bytes(), internal RAND cleanup, RAND_add(), RAND_pseudo_rand()
 and RAND_status().
 Each component may be NULL if the function is not implemented.
 
@@ -69,4 +69,13 @@ algorithms.
 
 L<rand(3)>, L<engine(3)>
 
+=head1 COPYRIGHT
+
+Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
+
+Licensed under the OpenSSL license (the "License").  You may not use
+this file except in compliance with the License.  You can obtain a copy
+in the file LICENSE in the source distribution or at
+L<https://www.openssl.org/source/license.html>.
+
 =cut