projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5ecfcc
)
Support ciphersuites using a SHA2 384 digest in FreeBSD KTLS.
author
John Baldwin
<jhb@FreeBSD.org>
Thu, 31 Oct 2019 23:51:08 +0000
(16:51 -0700)
committer
Kurt Roeckx
<kurt@roeckx.be>
Sun, 24 Nov 2019 22:12:38 +0000
(23:12 +0100)
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Richard Levitte <levitte@openssl.org>
GH: #10372
ssl/t1_enc.c
patch
|
blob
|
history
diff --git
a/ssl/t1_enc.c
b/ssl/t1_enc.c
index 09bfb45884af19f559a00ff3e5ed4151d4743753..19045f9649959b6e4dc99cc99516094f78ad88c2 100644
(file)
--- a/
ssl/t1_enc.c
+++ b/
ssl/t1_enc.c
@@
-410,6
+410,9
@@
int tls1_change_cipher_state(SSL *s, int which)
case SSL_SHA256:
crypto_info.auth_algorithm = CRYPTO_SHA2_256_HMAC;
break;
+ case SSL_SHA384:
+ crypto_info.auth_algorithm = CRYPTO_SHA2_384_HMAC;
+ break;
default:
goto skip_ktls;
}