diff options
| author | Rohit Aggarwal <[email protected]> | 2018-03-08 16:56:40 +0000 |
|---|---|---|
| committer | Rohit Aggarwal <[email protected]> | 2018-03-08 16:56:40 +0000 |
| commit | 0a38b5a9efcc1bf60f42f8925832cd07f1a159d3 (patch) | |
| tree | 36107c6c6187c8cabd5780b45831bc4042c1f0fc /openssl/src | |
| parent | Another try at using the correct curve (diff) | |
| download | rust-openssl-0a38b5a9efcc1bf60f42f8925832cd07f1a159d3.tar.xz rust-openssl-0a38b5a9efcc1bf60f42f8925832cd07f1a159d3.zip | |
Try out another curve
Diffstat (limited to 'openssl/src')
| -rw-r--r-- | openssl/src/ecdsa.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/ecdsa.rs b/openssl/src/ecdsa.rs index 10f5f893..f7386861 100644 --- a/openssl/src/ecdsa.rs +++ b/openssl/src/ecdsa.rs @@ -127,7 +127,7 @@ mod test { use ec::EcGroup; use super::*; - static CURVE_IDENTIFER: Nid = Nid::X9_62_PRIME192V1; + static CURVE_IDENTIFER: Nid = Nid::X9_62_C2TNB191V1; static DGST_LEN: i32 = 20; fn get_public_key(group: &EcGroup, x: &EcKey<Private>) -> Result<EcKey<Public>, ErrorStack> { |