diff options
| author | jsing <> | 2017-08-12 21:47:59 +0000 |
|---|---|---|
| committer | jsing <> | 2017-08-12 21:47:59 +0000 |
| commit | c5e03b19d2b12b62f757c555b3ac5eabff543a5a (patch) | |
| tree | 7d3c1eee97fd0dbbff864f384df0b79fe8b31d0a /src/lib/libssl/ssl_tlsext.h | |
| parent | 3638daddc32844087ff5915a00a226a8556723e8 (diff) | |
| download | openbsd-c5e03b19d2b12b62f757c555b3ac5eabff543a5a.tar.gz openbsd-c5e03b19d2b12b62f757c555b3ac5eabff543a5a.tar.bz2 openbsd-c5e03b19d2b12b62f757c555b3ac5eabff543a5a.zip | |
Convert TLS signature algorithms extension handling to the new framework.
ok beck@ doug@
Diffstat (limited to 'src/lib/libssl/ssl_tlsext.h')
| -rw-r--r-- | src/lib/libssl/ssl_tlsext.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_tlsext.h b/src/lib/libssl/ssl_tlsext.h index 1e701e941a..4f8ae0cf35 100644 --- a/src/lib/libssl/ssl_tlsext.h +++ b/src/lib/libssl/ssl_tlsext.h | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ssl_tlsext.h,v 1.6 2017/08/12 21:17:03 doug Exp $ */ | 1 | /* $OpenBSD: ssl_tlsext.h,v 1.7 2017/08/12 21:47:59 jsing Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2016, 2017 Joel Sing <jsing@openbsd.org> |
| 4 | * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> | 4 | * Copyright (c) 2017 Doug Hogan <doug@openbsd.org> |
| @@ -23,6 +23,13 @@ int tlsext_ri_serverhello_needs(SSL *s); | |||
| 23 | int tlsext_ri_serverhello_build(SSL *s, CBB *cbb); | 23 | int tlsext_ri_serverhello_build(SSL *s, CBB *cbb); |
| 24 | int tlsext_ri_serverhello_parse(SSL *s, CBS *cbs, int *alert); | 24 | int tlsext_ri_serverhello_parse(SSL *s, CBS *cbs, int *alert); |
| 25 | 25 | ||
| 26 | int tlsext_sigalgs_clienthello_needs(SSL *s); | ||
| 27 | int tlsext_sigalgs_clienthello_build(SSL *s, CBB *cbb); | ||
| 28 | int tlsext_sigalgs_clienthello_parse(SSL *s, CBS *cbs, int *alert); | ||
| 29 | int tlsext_sigalgs_serverhello_needs(SSL *s); | ||
| 30 | int tlsext_sigalgs_serverhello_build(SSL *s, CBB *cbb); | ||
| 31 | int tlsext_sigalgs_serverhello_parse(SSL *s, CBS *cbs, int *alert); | ||
| 32 | |||
| 26 | int tlsext_sni_clienthello_needs(SSL *s); | 33 | int tlsext_sni_clienthello_needs(SSL *s); |
| 27 | int tlsext_sni_clienthello_build(SSL *s, CBB *cbb); | 34 | int tlsext_sni_clienthello_build(SSL *s, CBB *cbb); |
| 28 | int tlsext_sni_clienthello_parse(SSL *s, CBS *cbs, int *alert); | 35 | int tlsext_sni_clienthello_parse(SSL *s, CBS *cbs, int *alert); |
