summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/OpenSSL_add_all_algorithms.pod
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/doc/OpenSSL_add_all_algorithms.pod')
-rw-r--r--src/lib/libcrypto/doc/OpenSSL_add_all_algorithms.pod24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/lib/libcrypto/doc/OpenSSL_add_all_algorithms.pod b/src/lib/libcrypto/doc/OpenSSL_add_all_algorithms.pod
index e63411b5bb..cc6c07fa24 100644
--- a/src/lib/libcrypto/doc/OpenSSL_add_all_algorithms.pod
+++ b/src/lib/libcrypto/doc/OpenSSL_add_all_algorithms.pod
@@ -39,24 +39,24 @@ None of the functions return a value.
39A typical application will call OpenSSL_add_all_algorithms() initially and 39A typical application will call OpenSSL_add_all_algorithms() initially and
40EVP_cleanup() before exiting. 40EVP_cleanup() before exiting.
41 41
42An application does not need to add algorithms to use them explicitly, for example 42An application does not need to add algorithms to use them explicitly, for
43by EVP_sha1(). It just needs to add them if it (or any of the functions it calls) 43example by EVP_sha1(). It just needs to add them if it (or any of the functions
44needs to lookup algorithms. 44it calls) needs to lookup algorithms.
45 45
46The cipher and digest lookup functions are used in many parts of the library. If 46The cipher and digest lookup functions are used in many parts of the library.
47the table is not initialized several functions will misbehave and complain they 47If the table is not initialized several functions will misbehave and complain
48cannot find algorithms. This includes the PEM, PKCS#12, SSL and S/MIME libraries. 48they cannot find algorithms. This includes the PEM, PKCS#12, SSL and S/MIME
49This is a common query in the OpenSSL mailing lists. 49libraries. This is a common query in the OpenSSL mailing lists.
50 50
51Calling OpenSSL_add_all_algorithms() links in all algorithms: as a result a 51Calling OpenSSL_add_all_algorithms() links in all algorithms: as a result a
52statically linked executable can be quite large. If this is important it is possible 52statically linked executable can be quite large. If this is important it is
53to just add the required ciphers and digests. 53possible to just add the required ciphers and digests.
54 54
55=head1 BUGS 55=head1 BUGS
56 56
57Although the functions do not return error codes it is possible for them to fail. 57Although the functions do not return error codes it is possible for them to
58This will only happen as a result of a memory allocation failure so this is not 58fail. This will only happen as a result of a memory allocation failure so this
59too much of a problem in practice. 59is not too much of a problem in practice.
60 60
61=head1 SEE ALSO 61=head1 SEE ALSO
62 62