diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2017-01-27 16:06:16 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2017-01-30 14:00:17 +0100 |
commit | 54b7f2a5ca463072dde5590e4dd3112bd47bba28 (patch) | |
tree | 6bb15f9f030001e5daa8553f751d8e2ff32353a5 /test/ssl_test_ctx.h | |
parent | Update documentation (diff) | |
download | openssl-54b7f2a5ca463072dde5590e4dd3112bd47bba28.tar.xz openssl-54b7f2a5ca463072dde5590e4dd3112bd47bba28.zip |
Add test support for TLS signature types.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2301)
Diffstat (limited to 'test/ssl_test_ctx.h')
-rw-r--r-- | test/ssl_test_ctx.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ssl_test_ctx.h b/test/ssl_test_ctx.h index b34efe327c..13652b0528 100644 --- a/test/ssl_test_ctx.h +++ b/test/ssl_test_ctx.h @@ -165,10 +165,14 @@ typedef struct { int expected_server_cert_type; /* Expected server signing hash */ int expected_server_sign_hash; + /* Expected server signature type */ + int expected_server_sign_type; /* Expected client certificate key type */ int expected_client_cert_type; /* Expected client signing hash */ int expected_client_sign_hash; + /* Expected client signature type */ + int expected_client_sign_type; } SSL_TEST_CTX; const char *ssl_test_result_name(ssl_test_result_t result); |