diff options
author | 2014-11-09 19:17:11 +0000 | |
---|---|---|
committer | 2014-11-09 19:17:11 +0000 | |
commit | 90f161cce41168eb31d5c3c6bb6769d367068d3b (patch) | |
tree | 13d4856397bfe17cb51b725e43d3eb5b85d0737e /lib/libssl/src/crypto/objects/obj_xref.h | |
parent | Introduce EVP_MD_CTX_ctrl(), to allow for fine control of a given digest. (diff) | |
download | wireguard-openbsd-90f161cce41168eb31d5c3c6bb6769d367068d3b.tar.xz wireguard-openbsd-90f161cce41168eb31d5c3c6bb6769d367068d3b.zip |
GOST crypto algorithms (well, most of them), ported from the removed GOST
engine to regular EVP citizens, contributed by Dmitry Eremin-Solenikov;
libcrypto bits only for now.
This is a verbatim import of Dmitry's work, and does not compile in this
state; the forthcoming commits will address these issues.
None of the GOST code is enabled in libcrypto yet, for it still gets
compiled with OPENSSL_NO_GOST defined. However, the public header gost.h
will be installed.
Diffstat (limited to 'lib/libssl/src/crypto/objects/obj_xref.h')
-rw-r--r-- | lib/libssl/src/crypto/objects/obj_xref.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/objects/obj_xref.h b/lib/libssl/src/crypto/objects/obj_xref.h index fec28d11274..44994566945 100644 --- a/lib/libssl/src/crypto/objects/obj_xref.h +++ b/lib/libssl/src/crypto/objects/obj_xref.h @@ -1,4 +1,4 @@ -/* $OpenBSD: obj_xref.h,v 1.2 2014/06/12 15:49:30 deraadt Exp $ */ +/* $OpenBSD: obj_xref.h,v 1.3 2014/11/09 19:17:13 miod Exp $ */ /* AUTOGENERATED BY objxref.pl, DO NOT EDIT */ typedef struct @@ -40,6 +40,8 @@ static const nid_triple sigoid_srt[] = {NID_id_GostR3411_94_with_GostR3410_94_cc, NID_id_GostR3411_94, NID_id_GostR3410_94_cc}, {NID_id_GostR3411_94_with_GostR3410_2001_cc, NID_id_GostR3411_94, NID_id_GostR3410_2001_cc}, {NID_rsassaPss, NID_undef, NID_rsaEncryption}, + {NID_id_tc26_signwithdigest_gost3410_2012_256, NID_id_tc26_gost3411_2012_256, NID_id_GostR3410_2001}, + {NID_id_tc26_signwithdigest_gost3410_2012_512, NID_id_tc26_gost3411_2012_512, NID_id_GostR3410_2001}, }; static const nid_triple * const sigoid_srt_xref[] = @@ -74,5 +76,7 @@ static const nid_triple * const sigoid_srt_xref[] = &sigoid_srt[26], &sigoid_srt[27], &sigoid_srt[28], + &sigoid_srt[30], + &sigoid_srt[31], }; |