Fix typo in documents
[openssl.git] / doc / man3 / RAND_cleanup.pod
1 =pod
2
3 =head1 NAME
4
5 RAND_cleanup - erase the PRNG state
6
7 =head1 SYNOPSIS
8
9  #include <openssl/rand.h>
10
11  #if OPENSSL_API_COMPAT < 0x10100000L
12  void RAND_cleanup(void)
13  #endif
14
15 =head1 DESCRIPTION
16
17 Prior to OpenSSL 1.1.0, RAND_cleanup() released all resources used by
18 the PRNG.  As of version 1.1.0, it does nothing and should not be called,
19 since no explicit initialisation or de-initialisation is necessary. See
20 L<OPENSSL_init_crypto(3)>.
21
22 =head1 RETURN VALUE
23
24 RAND_cleanup() returns no value.
25
26 =head1 SEE ALSO
27
28 L<RAND_bytes(3)>
29
30 =head1 HISTORY
31
32 RAND_cleanup() was deprecated in OpenSSL 1.1.0.
33
34 =head1 COPYRIGHT
35
36 Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
37
38 Licensed under the OpenSSL license (the "License").  You may not use
39 this file except in compliance with the License.  You can obtain a copy
40 in the file LICENSE in the source distribution or at
41 L<https://www.openssl.org/source/license.html>.
42
43 =cut