projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
41f1030
)
Text description of GOST signature algorithms
author
Dmitry Belyavskiy
<beldmit@gmail.com>
Thu, 3 May 2018 15:31:47 +0000
(18:31 +0300)
committer
Matt Caswell
<matt@openssl.org>
Wed, 30 May 2018 08:14:04 +0000
(09:14 +0100)
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6168)
apps/s_cb.c
patch
|
blob
|
history
diff --git
a/apps/s_cb.c
b/apps/s_cb.c
index 820491a037310fff73d718b303ef2c03cf0eddee..46b3864284619096b14528b999ffd07ee22d17e3 100644
(file)
--- a/
apps/s_cb.c
+++ b/
apps/s_cb.c
@@
-234,6
+234,15
@@
static const char *get_sigtype(int nid)
case NID_ED448:
return "Ed448";
+ case NID_id_GostR3410_2001:
+ return "gost2001";
+
+ case NID_id_GostR3410_2012_256:
+ return "gost2012_256";
+
+ case NID_id_GostR3410_2012_512:
+ return "gost2012_512";
+
default:
return NULL;
}