diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-07-23 19:36:48 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-07-23 19:36:48 +0200 |
commit | 4e35211c8ced250770a577e5b2e3bb59948088d2 (patch) | |
tree | 1e8db15bd4241599e48629974e2c8eca187b639d | |
parent | a72d32d5664bf88f339066d590a55bbf507f919f (diff) | |
download | gnutls-4e35211c8ced250770a577e5b2e3bb59948088d2.tar.gz |
HMAC-MD5 deprecated according to ECRYPT II yearly report (2009-2010) recommendations.
-rw-r--r-- | lib/gnutls_priority.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/gnutls_priority.c b/lib/gnutls_priority.c index 319f0972f8..d28c456ef4 100644 --- a/lib/gnutls_priority.c +++ b/lib/gnutls_priority.c @@ -361,7 +361,6 @@ static const int sign_priority_secure256[] = { }; static const int mac_priority_performance[] = { - GNUTLS_MAC_MD5, GNUTLS_MAC_SHA1, 0 }; @@ -370,7 +369,6 @@ static const int mac_priority_performance[] = { static const int mac_priority_secure[] = { GNUTLS_MAC_SHA256, GNUTLS_MAC_SHA1, - GNUTLS_MAC_MD5, 0 }; |