diff options
author | doug <> | 2015-06-20 16:42:48 +0000 |
---|---|---|
committer | doug <> | 2015-06-20 16:42:48 +0000 |
commit | 5e186922723116ffddd8bb5e1c571b9fa2aa7c55 (patch) | |
tree | 6d49840f319a2d594793af65e7de87c5d9b56d29 /src/lib/libssl/ssl_locl.h | |
parent | ab552fd24b77fd8885d1954a891b7db3d23c2568 (diff) | |
download | openbsd-5e186922723116ffddd8bb5e1c571b9fa2aa7c55.tar.gz openbsd-5e186922723116ffddd8bb5e1c571b9fa2aa7c55.tar.bz2 openbsd-5e186922723116ffddd8bb5e1c571b9fa2aa7c55.zip |
Convert ssl_parse_serverhello_renegotiate_ext to CBS.
ok miod@ jsing@
Diffstat (limited to 'src/lib/libssl/ssl_locl.h')
-rw-r--r-- | src/lib/libssl/ssl_locl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_locl.h b/src/lib/libssl/ssl_locl.h index b55e8265af..43c6974268 100644 --- a/src/lib/libssl/ssl_locl.h +++ b/src/lib/libssl/ssl_locl.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_locl.h,v 1.92 2015/06/20 04:04:35 doug Exp $ */ | 1 | /* $OpenBSD: ssl_locl.h,v 1.93 2015/06/20 16:42:48 doug 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 | * |
@@ -835,7 +835,7 @@ EVP_MD_CTX* ssl_replace_hash(EVP_MD_CTX **hash, const EVP_MD *md); | |||
835 | void ssl_clear_hash_ctx(EVP_MD_CTX **hash); | 835 | void ssl_clear_hash_ctx(EVP_MD_CTX **hash); |
836 | int ssl_add_serverhello_renegotiate_ext(SSL *s, unsigned char *p, | 836 | int ssl_add_serverhello_renegotiate_ext(SSL *s, unsigned char *p, |
837 | int *len, int maxlen); | 837 | int *len, int maxlen); |
838 | int ssl_parse_serverhello_renegotiate_ext(SSL *s, unsigned char *d, | 838 | int ssl_parse_serverhello_renegotiate_ext(SSL *s, const unsigned char *d, |
839 | int len, int *al); | 839 | int len, int *al); |
840 | int ssl_add_clienthello_renegotiate_ext(SSL *s, unsigned char *p, | 840 | int ssl_add_clienthello_renegotiate_ext(SSL *s, unsigned char *p, |
841 | int *len, int maxlen); | 841 | int *len, int maxlen); |