From bf3fc1487ab4d49b366d075e6f48ee4eef2d29a4 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Sat, 9 Feb 2019 15:26:15 +0000 Subject: Rename tls1_handshake_hash*() to tls1_transcript_hash*(). While handshake hash is correct (in as far as it is a hash of handshake messages), using tls1_transcript_hash*() aligns them with the naming of the tls1_transcript*() functions. Additionally, the TLSv1.3 specification uses Transcript-Hash and "transcript hash", which this matches. ok inoguchi@ tb@ --- src/lib/libssl/s3_lib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/libssl/s3_lib.c') diff --git a/src/lib/libssl/s3_lib.c b/src/lib/libssl/s3_lib.c index b7d87268ab..de928bd70e 100644 --- a/src/lib/libssl/s3_lib.c +++ b/src/lib/libssl/s3_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_lib.c,v 1.183 2019/01/24 15:50:47 beck Exp $ */ +/* $OpenBSD: s3_lib.c,v 1.184 2019/02/09 15:26:15 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1574,7 +1574,7 @@ ssl3_free(SSL *s) sk_X509_NAME_pop_free(S3I(s)->tmp.ca_names, X509_NAME_free); tls1_transcript_free(s); - tls1_handshake_hash_free(s); + tls1_transcript_hash_free(s); free(S3I(s)->alpn_selected); @@ -1622,7 +1622,7 @@ ssl3_clear(SSL *s) wlen = S3I(s)->wbuf.len; tls1_transcript_free(s); - tls1_handshake_hash_free(s); + tls1_transcript_hash_free(s); free(S3I(s)->alpn_selected); S3I(s)->alpn_selected = NULL; -- cgit v1.2.3-55-g6feb