diff options
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/evp/e_rc4_hmac_md5.c | 4 | ||||
-rw-r--r-- | crypto/evp/legacy_md5.c | 6 | ||||
-rw-r--r-- | crypto/evp/legacy_md5_sha1.c | 2 | ||||
-rw-r--r-- | crypto/md5/md5_dgst.c | 6 | ||||
-rw-r--r-- | crypto/md5/md5_one.c | 6 | ||||
-rw-r--r-- | crypto/md5/md5_sha1.c | 2 |
6 files changed, 22 insertions, 4 deletions
diff --git a/crypto/evp/e_rc4_hmac_md5.c b/crypto/evp/e_rc4_hmac_md5.c index fa838bf4b2..d3b1dfe258 100644 --- a/crypto/evp/e_rc4_hmac_md5.c +++ b/crypto/evp/e_rc4_hmac_md5.c @@ -8,8 +8,8 @@ */ /* - * RC4 low level APIs are deprecated for public use, but still ok for internal - * use. + * MD5 and RC4 low level APIs are deprecated for public use, but still ok for + * internal use. */ #include "internal/deprecated.h" diff --git a/crypto/evp/legacy_md5.c b/crypto/evp/legacy_md5.c index 9bb1258e47..3ca5305622 100644 --- a/crypto/evp/legacy_md5.c +++ b/crypto/evp/legacy_md5.c @@ -7,6 +7,12 @@ * https://www.openssl.org/source/license.html */ +/* + * MD5 low level APIs are deprecated for public use, but still ok for + * internal use. + */ +#include "internal/deprecated.h" + #include <openssl/md5.h> #include "crypto/evp.h" #include "legacy_meth.h" diff --git a/crypto/evp/legacy_md5_sha1.c b/crypto/evp/legacy_md5_sha1.c index 380cdf4a79..9910892af8 100644 --- a/crypto/evp/legacy_md5_sha1.c +++ b/crypto/evp/legacy_md5_sha1.c @@ -8,7 +8,7 @@ */ /* - * SHA-1 low level APIs are deprecated for public use, but still ok for + * MD5 and SHA-1 low level APIs are deprecated for public use, but still ok for * internal use. The prov/md5_sha1.h include requires this, but this must * be the first include loaded. */ diff --git a/crypto/md5/md5_dgst.c b/crypto/md5/md5_dgst.c index b594652f0d..72b641f4f8 100644 --- a/crypto/md5/md5_dgst.c +++ b/crypto/md5/md5_dgst.c @@ -7,6 +7,12 @@ * https://www.openssl.org/source/license.html */ +/* + * MD5 low level APIs are deprecated for public use, but still ok for + * internal use. + */ +#include "internal/deprecated.h" + #include <stdio.h> #include "md5_local.h" #include <openssl/opensslv.h> diff --git a/crypto/md5/md5_one.c b/crypto/md5/md5_one.c index c31760bb39..96f4f96f42 100644 --- a/crypto/md5/md5_one.c +++ b/crypto/md5/md5_one.c @@ -7,6 +7,12 @@ * https://www.openssl.org/source/license.html */ +/* + * MD5 low level APIs are deprecated for public use, but still ok for + * internal use. + */ +#include "internal/deprecated.h" + #include <stdio.h> #include <string.h> #include <openssl/md5.h> diff --git a/crypto/md5/md5_sha1.c b/crypto/md5/md5_sha1.c index fa2ccde30f..054f634ac8 100644 --- a/crypto/md5/md5_sha1.c +++ b/crypto/md5/md5_sha1.c @@ -8,7 +8,7 @@ */ /* - * SHA-1 low level APIs are deprecated for public use, but still ok for + * MD5 and SHA-1 low level APIs are deprecated for public use, but still ok for * internal use. */ #include "internal/deprecated.h" |