diff options
Diffstat (limited to 'src/lib/libcrypto/doc')
| -rw-r--r-- | src/lib/libcrypto/doc/EVP_DigestInit.pod | 13 | ||||
| -rw-r--r-- | src/lib/libcrypto/doc/EVP_DigestSignInit.pod | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/doc/EVP_DigestVerifyInit.pod | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/doc/EVP_SignInit.pod | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/doc/EVP_VerifyInit.pod | 2 |
5 files changed, 10 insertions, 11 deletions
diff --git a/src/lib/libcrypto/doc/EVP_DigestInit.pod b/src/lib/libcrypto/doc/EVP_DigestInit.pod index 4b48080b4a..ccb19fc0a7 100644 --- a/src/lib/libcrypto/doc/EVP_DigestInit.pod +++ b/src/lib/libcrypto/doc/EVP_DigestInit.pod | |||
| @@ -8,7 +8,7 @@ EVP_MD_CTX_copy_ex, EVP_MD_CTX_copy, EVP_MD_type, EVP_MD_pkey_type, | |||
| 8 | EVP_MD_size, EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size, | 8 | EVP_MD_size, EVP_MD_block_size, EVP_MD_CTX_md, EVP_MD_CTX_size, |
| 9 | EVP_MD_CTX_block_size, EVP_MD_CTX_type, EVP_md_null, EVP_md2, EVP_md5, EVP_sha, | 9 | EVP_MD_CTX_block_size, EVP_MD_CTX_type, EVP_md_null, EVP_md2, EVP_md5, EVP_sha, |
| 10 | EVP_sha1, EVP_sha224, EVP_sha256, EVP_sha384, EVP_sha512, EVP_dss, EVP_dss1, | 10 | EVP_sha1, EVP_sha224, EVP_sha256, EVP_sha384, EVP_sha512, EVP_dss, EVP_dss1, |
| 11 | EVP_mdc2, EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, | 11 | EVP_ripemd160, EVP_get_digestbyname, EVP_get_digestbynid, |
| 12 | EVP_get_digestbyobj - EVP digest routines | 12 | EVP_get_digestbyobj - EVP digest routines |
| 13 | 13 | ||
| 14 | =head1 SYNOPSIS | 14 | =head1 SYNOPSIS |
| @@ -53,7 +53,6 @@ EVP_get_digestbyobj - EVP digest routines | |||
| 53 | const EVP_MD *EVP_sha1(void); | 53 | const EVP_MD *EVP_sha1(void); |
| 54 | const EVP_MD *EVP_dss(void); | 54 | const EVP_MD *EVP_dss(void); |
| 55 | const EVP_MD *EVP_dss1(void); | 55 | const EVP_MD *EVP_dss1(void); |
| 56 | const EVP_MD *EVP_mdc2(void); | ||
| 57 | const EVP_MD *EVP_ripemd160(void); | 56 | const EVP_MD *EVP_ripemd160(void); |
| 58 | 57 | ||
| 59 | const EVP_MD *EVP_sha224(void); | 58 | const EVP_MD *EVP_sha224(void); |
| @@ -134,8 +133,8 @@ algorithms are no longer linked this function is only retained for | |||
| 134 | compatibility reasons. | 133 | compatibility reasons. |
| 135 | 134 | ||
| 136 | EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_sha224(), EVP_sha256(), | 135 | EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_sha224(), EVP_sha256(), |
| 137 | EVP_sha384(), EVP_sha512(), EVP_mdc2() and EVP_ripemd160() return B<EVP_MD> | 136 | EVP_sha384(), EVP_sha512() and EVP_ripemd160() return B<EVP_MD> |
| 138 | structures for the MD2, MD5, SHA, SHA1, SHA224, SHA256, SHA384, SHA512, MDC2 | 137 | structures for the MD2, MD5, SHA, SHA1, SHA224, SHA256, SHA384, SHA512 |
| 139 | and RIPEMD160 digest algorithms respectively. | 138 | and RIPEMD160 digest algorithms respectively. |
| 140 | 139 | ||
| 141 | EVP_dss() and EVP_dss1() return B<EVP_MD> structures for SHA and SHA1 digest | 140 | EVP_dss() and EVP_dss1() return B<EVP_MD> structures for SHA and SHA1 digest |
| @@ -165,7 +164,7 @@ EVP_MD_size(), EVP_MD_block_size(), EVP_MD_CTX_size() and | |||
| 165 | EVP_MD_CTX_block_size() return the digest or block size in bytes. | 164 | EVP_MD_CTX_block_size() return the digest or block size in bytes. |
| 166 | 165 | ||
| 167 | EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(), | 166 | EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), EVP_dss(), |
| 168 | EVP_dss1(), EVP_mdc2() and EVP_ripemd160() return pointers to the | 167 | EVP_dss1() and EVP_ripemd160() return pointers to the |
| 169 | corresponding EVP_MD structures. | 168 | corresponding EVP_MD structures. |
| 170 | 169 | ||
| 171 | EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj() | 170 | EVP_get_digestbyname(), EVP_get_digestbynid() and EVP_get_digestbyobj() |
| @@ -253,7 +252,7 @@ digest name passed on the command line. | |||
| 253 | =head1 SEE ALSO | 252 | =head1 SEE ALSO |
| 254 | 253 | ||
| 255 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, | 254 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, |
| 256 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, | 255 | L<md5(3)|md5(3)>, L<ripemd(3)|ripemd(3)>, |
| 257 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> | 256 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> |
| 258 | 257 | ||
| 259 | =head1 HISTORY | 258 | =head1 HISTORY |
| @@ -266,7 +265,7 @@ EVP_MD_CTX_cleanup(), EVP_MD_CTX_destroy(), EVP_DigestInit_ex() | |||
| 266 | and EVP_DigestFinal_ex() were added in OpenSSL 0.9.7. | 265 | and EVP_DigestFinal_ex() were added in OpenSSL 0.9.7. |
| 267 | 266 | ||
| 268 | EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), | 267 | EVP_md_null(), EVP_md2(), EVP_md5(), EVP_sha(), EVP_sha1(), |
| 269 | EVP_dss(), EVP_dss1(), EVP_mdc2() and EVP_ripemd160() were | 268 | EVP_dss(), EVP_dss1() and EVP_ripemd160() were |
| 270 | changed to return truely const EVP_MD * in OpenSSL 0.9.7. | 269 | changed to return truely const EVP_MD * in OpenSSL 0.9.7. |
| 271 | 270 | ||
| 272 | The link between digests and signing algorithms was fixed in OpenSSL 1.0 and | 271 | The link between digests and signing algorithms was fixed in OpenSSL 1.0 and |
diff --git a/src/lib/libcrypto/doc/EVP_DigestSignInit.pod b/src/lib/libcrypto/doc/EVP_DigestSignInit.pod index e70b88a4a9..7fd4c22e79 100644 --- a/src/lib/libcrypto/doc/EVP_DigestSignInit.pod +++ b/src/lib/libcrypto/doc/EVP_DigestSignInit.pod | |||
| @@ -74,7 +74,7 @@ which indicates the maximum possible signature for any set of parameters. | |||
| 74 | L<EVP_DigestVerifyInit(3)|EVP_DigestVerifyInit(3)>, | 74 | L<EVP_DigestVerifyInit(3)|EVP_DigestVerifyInit(3)>, |
| 75 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, | 75 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, |
| 76 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, | 76 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, |
| 77 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, | 77 | L<md5(3)|md5(3)>, L<ripemd(3)|ripemd(3)>, |
| 78 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> | 78 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> |
| 79 | 79 | ||
| 80 | =head1 HISTORY | 80 | =head1 HISTORY |
diff --git a/src/lib/libcrypto/doc/EVP_DigestVerifyInit.pod b/src/lib/libcrypto/doc/EVP_DigestVerifyInit.pod index 9eebb15d22..0817cf0b02 100644 --- a/src/lib/libcrypto/doc/EVP_DigestVerifyInit.pod +++ b/src/lib/libcrypto/doc/EVP_DigestVerifyInit.pod | |||
| @@ -69,7 +69,7 @@ will occur. | |||
| 69 | L<EVP_DigestSignInit(3)|EVP_DigestSignInit(3)>, | 69 | L<EVP_DigestSignInit(3)|EVP_DigestSignInit(3)>, |
| 70 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, | 70 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, |
| 71 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, | 71 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, |
| 72 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, | 72 | L<md5(3)|md5(3)>, L<ripemd(3)|ripemd(3)>, |
| 73 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> | 73 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> |
| 74 | 74 | ||
| 75 | =head1 HISTORY | 75 | =head1 HISTORY |
diff --git a/src/lib/libcrypto/doc/EVP_SignInit.pod b/src/lib/libcrypto/doc/EVP_SignInit.pod index 5a1b67e006..9aafa3d63a 100644 --- a/src/lib/libcrypto/doc/EVP_SignInit.pod +++ b/src/lib/libcrypto/doc/EVP_SignInit.pod | |||
| @@ -89,7 +89,7 @@ The previous two bugs are fixed in the newer EVP_SignDigest*() function. | |||
| 89 | L<EVP_VerifyInit(3)|EVP_VerifyInit(3)>, | 89 | L<EVP_VerifyInit(3)|EVP_VerifyInit(3)>, |
| 90 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, | 90 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, |
| 91 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, | 91 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, |
| 92 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, | 92 | L<md5(3)|md5(3)>, L<ripemd(3)|ripemd(3)>, |
| 93 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> | 93 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> |
| 94 | 94 | ||
| 95 | =head1 HISTORY | 95 | =head1 HISTORY |
diff --git a/src/lib/libcrypto/doc/EVP_VerifyInit.pod b/src/lib/libcrypto/doc/EVP_VerifyInit.pod index c665ee2ebc..b0d3f8e4c9 100644 --- a/src/lib/libcrypto/doc/EVP_VerifyInit.pod +++ b/src/lib/libcrypto/doc/EVP_VerifyInit.pod | |||
| @@ -83,7 +83,7 @@ L<evp(3)|evp(3)>, | |||
| 83 | L<EVP_SignInit(3)|EVP_SignInit(3)>, | 83 | L<EVP_SignInit(3)|EVP_SignInit(3)>, |
| 84 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, | 84 | L<EVP_DigestInit(3)|EVP_DigestInit(3)>, L<err(3)|err(3)>, |
| 85 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, | 85 | L<evp(3)|evp(3)>, L<hmac(3)|hmac(3)>, L<md2(3)|md2(3)>, |
| 86 | L<md5(3)|md5(3)>, L<mdc2(3)|mdc2(3)>, L<ripemd(3)|ripemd(3)>, | 86 | L<md5(3)|md5(3)>, L<ripemd(3)|ripemd(3)>, |
| 87 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> | 87 | L<sha(3)|sha(3)>, L<dgst(1)|dgst(1)> |
| 88 | 88 | ||
| 89 | =head1 HISTORY | 89 | =head1 HISTORY |
