diff options
author | 2014-11-12 18:21:07 +0000 | |
---|---|---|
committer | 2014-11-12 18:21:07 +0000 | |
commit | ceee467e7dd700a6c002b3b0dd5e3ccf9dd8cc09 (patch) | |
tree | efac84ba8a5efa3a8a635d11f6b1f8dc052c3cb1 /lib/libssl/src | |
parent | Improve performance of an internal loop by saving up on branching (diff) | |
download | wireguard-openbsd-ceee467e7dd700a6c002b3b0dd5e3ccf9dd8cc09.tar.xz wireguard-openbsd-ceee467e7dd700a6c002b3b0dd5e3ccf9dd8cc09.zip |
Fix GOST TC26-B curve description.
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/ec/ec_curve.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/ec/ec_curve.c b/lib/libssl/src/crypto/ec/ec_curve.c index 0159dbe530c..6490cd9d84f 100644 --- a/lib/libssl/src/crypto/ec/ec_curve.c +++ b/lib/libssl/src/crypto/ec/ec_curve.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ec_curve.c,v 1.8 2014/11/09 19:17:13 miod Exp $ */ +/* $OpenBSD: ec_curve.c,v 1.9 2014/11/12 18:21:07 miod Exp $ */ /* * Written by Nils Larsch for the OpenSSL project. */ @@ -3209,7 +3209,7 @@ static const ec_list_element curve_list[] = { {NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet, &_EC_GOST_2001_CryptoPro_A.h, 0, "GOST R 34.10-2001 CryptoPro-XchA"}, {NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet, &_EC_GOST_2001_CryptoPro_C.h, 0, "GOST R 34.10-2001 CryptoPro-XchB"}, {NID_id_tc26_gost_3410_2012_512_paramSetA, &_EC_GOST_2012_TC26_A.h, 0, "GOST R 34.10-2012 TC26-A"}, - {NID_id_tc26_gost_3410_2012_512_paramSetB, &_EC_GOST_2012_TC26_B.h, 0, "GOST R 34.10-2012 TC26-A"}, + {NID_id_tc26_gost_3410_2012_512_paramSetB, &_EC_GOST_2012_TC26_B.h, 0, "GOST R 34.10-2012 TC26-B"}, #endif }; |