diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-02-09 15:26:16 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-02-09 15:26:16 +0000 |
commit | a5d39962238a0507ff44de648cb1ffbf95e5e1ca (patch) | |
tree | 6b73c0b86d2bf39b74981f478891f4861e4792eb /lib/libssl/ssl_locl.h | |
parent | 0349a391b9770d165b316852144531a0e541d9f3 (diff) |
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@
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 90aca266258..a26b91976e4 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.233 2019/01/24 02:56:41 beck Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.234 2019/02/09 15:26:15 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1262,11 +1262,11 @@ int dtls1_enc(SSL *s, int snd); int ssl_init_wbio_buffer(SSL *s, int push); void ssl_free_wbio_buffer(SSL *s); -int tls1_handshake_hash_init(SSL *s); -int tls1_handshake_hash_update(SSL *s, const unsigned char *buf, size_t len); -int tls1_handshake_hash_value(SSL *s, const unsigned char *out, size_t len, +int tls1_transcript_hash_init(SSL *s); +int tls1_transcript_hash_update(SSL *s, const unsigned char *buf, size_t len); +int tls1_transcript_hash_value(SSL *s, const unsigned char *out, size_t len, size_t *outlen); -void tls1_handshake_hash_free(SSL *s); +void tls1_transcript_hash_free(SSL *s); int tls1_transcript_init(SSL *s); void tls1_transcript_free(SSL *s); |