summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-07-22 11:02:46 +0100
committerMatt Caswell <matt@openssl.org>2019-08-06 11:02:50 +0100
commitc1a3f16f735057b45df1803d58f40e4e17b233e5 (patch)
tree4bac4b3de40f53b225b732ffab06499d1818d7b2 /include
parent8bbf63e48f27c5edaa03e6d87d969c9b6a207f3c (diff)
Correct the Extended Master Secret string for EBCDIC
The macro TLS_MD_MASTER_SECRET_CONST is supposed to hold the ascii string "extended master secret". On EBCDIC machines it actually contained the value "extecded master secret" Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9430)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/tls1.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/tls1.h b/include/openssl/tls1.h
index 4db2b6a0db..f587f2a488 100644
--- a/include/openssl/tls1.h
+++ b/include/openssl/tls1.h
@@ -1192,7 +1192,7 @@ __owur int SSL_check_chain(SSL *s, X509 *x, EVP_PKEY *pk, STACK_OF(X509) *chain)
/*
* extended master secret
*/
-# define TLS_MD_EXTENDED_MASTER_SECRET_CONST "\x65\x78\x74\x65\x63\x64\x65\x64\x20\x6d\x61\x73\x74\x65\x72\x20\x73\x65\x63\x72\x65\x74"
+# define TLS_MD_EXTENDED_MASTER_SECRET_CONST "\x65\x78\x74\x65\x6e\x64\x65\x64\x20\x6d\x61\x73\x74\x65\x72\x20\x73\x65\x63\x72\x65\x74"
# endif
/* TLS Session Ticket extension struct */