diff options
author | lloyd <[email protected]> | 2010-03-13 18:49:40 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-13 18:49:40 +0000 |
commit | 17470c645f0d622f6be3e9e14811703c670c0cc4 (patch) | |
tree | b6915636cdd0443c31b791e007457fc97ee5214a /src/pubkey/gost_3410/gost_3410.h | |
parent | 0f1ca25b51f72ea36227be72294f7cd5c70b33b6 (diff) |
Fix GOST, wasn't getting found in engine
Diffstat (limited to 'src/pubkey/gost_3410/gost_3410.h')
-rw-r--r-- | src/pubkey/gost_3410/gost_3410.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey/gost_3410/gost_3410.h b/src/pubkey/gost_3410/gost_3410.h index ffdbc6e19..36fa2912d 100644 --- a/src/pubkey/gost_3410/gost_3410.h +++ b/src/pubkey/gost_3410/gost_3410.h @@ -106,7 +106,7 @@ class BOTAN_DLL GOST_3410_Signature_Operation : public PK_Ops::Signature u32bit max_input_bits() const { return order.bits(); } SecureVector<byte> sign(const byte msg[], u32bit msg_len, - RandomNumberGenerator& rng) const; + RandomNumberGenerator& rng); private: const PointGFp& base_point; @@ -126,7 +126,7 @@ class BOTAN_DLL GOST_3410_Verification_Operation : public PK_Ops::Verification bool with_recovery() const { return false; } bool verify(const byte msg[], u32bit msg_len, - const byte sig[], u32bit sig_len) const; + const byte sig[], u32bit sig_len); private: const PointGFp& base_point; const PointGFp& public_point; |