summaryrefslogtreecommitdiffstats
path: root/ssl/t1_trce.c
diff options
context:
space:
mode:
authorDmitry Belyavsky <beldmit@gmail.com>2015-11-17 15:32:30 +0000
committerMatt Caswell <matt@openssl.org>2015-11-23 16:09:42 +0000
commite44380a990a3edf1cd0c190c6459c8c026d53646 (patch)
treecb605454d30bf0eeca8c6369fed11fa5ffd29726 /ssl/t1_trce.c
parent76eba0d94bb418325be6409b272eac5e2bd4a0a9 (diff)
Patch containing TLS implementation for GOST 2012
This patch contains the necessary changes to provide GOST 2012 ciphersuites in TLS. It requires the use of an external GOST 2012 engine. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'ssl/t1_trce.c')
-rw-r--r--ssl/t1_trce.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c
index 74d157d016..dc595acead 100644
--- a/ssl/t1_trce.c
+++ b/ssl/t1_trce.c
@@ -543,14 +543,20 @@ static ssl_trace_tbl ssl_md_tbl[] = {
{3, "sha224"},
{4, "sha256"},
{5, "sha384"},
- {6, "sha512"}
+ {6, "sha512"},
+ {237, "md_gost94"},
+ {238, "md_gost2012_256"},
+ {239, "md_gost2012_512"},
};
static ssl_trace_tbl ssl_sig_tbl[] = {
{0, "anonymous"},
{1, "rsa"},
{2, "dsa"},
- {3, "ecdsa"}
+ {3, "ecdsa"},
+ {237, "gost2001"},
+ {238, "gost2012_256"},
+ {239, "gost2012_512"},
};
static ssl_trace_tbl ssl_hb_tbl[] = {