diff options
author | jsing <> | 2018-11-08 22:28:52 +0000 |
---|---|---|
committer | jsing <> | 2018-11-08 22:28:52 +0000 |
commit | 3ddaece0e07a9c99e3a1f04d188c5ece7176ee46 (patch) | |
tree | ea0388ba51cbbc63fa62e563b9694fedd9ef0f74 /src/lib/libssl/ssl3.h | |
parent | 638a717c204f5dd9a5b399e3c095815fb6d15124 (diff) | |
download | openbsd-3ddaece0e07a9c99e3a1f04d188c5ece7176ee46.tar.gz openbsd-3ddaece0e07a9c99e3a1f04d188c5ece7176ee46.tar.bz2 openbsd-3ddaece0e07a9c99e3a1f04d188c5ece7176ee46.zip |
Clean up and simplify the handshake transcript code.
This provides a cleaner, simpler and more readable API, with code that uses
a BUF_MEM instead of a BIO.
ok beck@ ("hurry up") and tb@.
Diffstat (limited to 'src/lib/libssl/ssl3.h')
-rw-r--r-- | src/lib/libssl/ssl3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl3.h b/src/lib/libssl/ssl3.h index 726fb9db0b..cadf7fd387 100644 --- a/src/lib/libssl/ssl3.h +++ b/src/lib/libssl/ssl3.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl3.h,v 1.48 2018/10/24 18:04:50 jsing Exp $ */ | 1 | /* $OpenBSD: ssl3.h,v 1.49 2018/11/08 22:28:52 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -350,7 +350,7 @@ typedef struct ssl3_buffer_st { | |||
350 | 350 | ||
351 | #define SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS 0x0001 | 351 | #define SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS 0x0001 |
352 | #define TLS1_FLAGS_SKIP_CERT_VERIFY 0x0010 | 352 | #define TLS1_FLAGS_SKIP_CERT_VERIFY 0x0010 |
353 | #define TLS1_FLAGS_KEEP_HANDSHAKE 0x0020 | 353 | #define TLS1_FLAGS_FREEZE_TRANSCRIPT 0x0020 |
354 | #define SSL3_FLAGS_CCS_OK 0x0080 | 354 | #define SSL3_FLAGS_CCS_OK 0x0080 |
355 | 355 | ||
356 | #ifndef OPENSSL_NO_SSL_INTERN | 356 | #ifndef OPENSSL_NO_SSL_INTERN |