diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2020-06-05 18:14:06 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2020-06-05 18:14:06 +0000 |
commit | 55520aff8fb96a63ae36287b7aa26bb3afb748ad (patch) | |
tree | ccc9747025c93ab4e2e960b76837ca2267573e2b /lib/libssl/ssl3.h | |
parent | 717cc9a11024ba34c215868cdae6f2df5b29676b (diff) |
Use IANA allocated GOST ClientCertificateTypes.
IANA has allocated numbers for GOST ClientCertificateType. Use them in
addition to private values (left in place for compatibility).
Diff from Dmitry Baryshkov <dbaryshkov@gmail.com>
Sponsored by ROSA Linux
ok inoguchi@ tb@
Diffstat (limited to 'lib/libssl/ssl3.h')
-rw-r--r-- | lib/libssl/ssl3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl3.h b/lib/libssl/ssl3.h index 30dc4c5d7d6..a102d114340 100644 --- a/lib/libssl/ssl3.h +++ b/lib/libssl/ssl3.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl3.h,v 1.50 2020/03/12 17:01:53 jsing Exp $ */ +/* $OpenBSD: ssl3.h,v 1.51 2020/06/05 18:14:05 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -348,7 +348,7 @@ typedef struct ssl3_buffer_st { * enough to contain all of the cert types defined either for * SSLv3 and TLSv1. */ -#define SSL3_CT_NUMBER 11 +#define SSL3_CT_NUMBER 13 #define SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS 0x0001 #define TLS1_FLAGS_SKIP_CERT_VERIFY 0x0010 |