diff options
author | lloyd <[email protected]> | 2010-02-25 01:35:33 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-02-25 01:35:33 +0000 |
commit | 4457657ac6048b5e0766dcc38d902d8fe99f2827 (patch) | |
tree | 047797d95e1d80fcd5b42fef4fbc60f80e8fbcff /src/pubkey/gost_3410/gost_3410.cpp | |
parent | 7dcfb4b9f2677a9958f742355b1f9f9ce8814ede (diff) |
Convert 3-arg constructoor of PointGFp to take BigInts instead of
GFpElements.
Clean up OS2ECP
Diffstat (limited to 'src/pubkey/gost_3410/gost_3410.cpp')
-rw-r--r-- | src/pubkey/gost_3410/gost_3410.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pubkey/gost_3410/gost_3410.cpp b/src/pubkey/gost_3410/gost_3410.cpp index 43e8a9c7b..bb68e2b8d 100644 --- a/src/pubkey/gost_3410/gost_3410.cpp +++ b/src/pubkey/gost_3410/gost_3410.cpp @@ -125,8 +125,7 @@ X509_Decoder* GOST_3410_PublicKey::x509_decoder() key->mp_public_point.reset( new PointGFp(key->domain_parameters().get_curve(), - GFpElement(x, p), - GFpElement(y, p))); + x, y)); key->X509_load_hook(); } |