diff options
author | lloyd <[email protected]> | 2010-03-05 16:33:54 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-05 16:33:54 +0000 |
commit | ce88e2c6918bb012321e1d7599c2a13b9ba9301e (patch) | |
tree | a87a57844f494a9b9ea6022b655f28a0c031a6ab /src/pubkey/gost_3410/gost_3410.h | |
parent | 284cae08b24ae892ee8ce5c3511acbf0b7688a43 (diff) |
Remove sign and verify ops from key types
Diffstat (limited to 'src/pubkey/gost_3410/gost_3410.h')
-rw-r--r-- | src/pubkey/gost_3410/gost_3410.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/pubkey/gost_3410/gost_3410.h b/src/pubkey/gost_3410/gost_3410.h index ffaa6fc4e..b10421a02 100644 --- a/src/pubkey/gost_3410/gost_3410.h +++ b/src/pubkey/gost_3410/gost_3410.h @@ -61,16 +61,6 @@ class BOTAN_DLL GOST_3410_PublicKey : public virtual EC_PublicKey, u32bit message_part_size() const { return domain().get_order().bytes(); } - /** - * Verify a message with this key. - * @param message the byte array containing the message - * @param mess_len the number of bytes in the message byte array - * @param signature the byte array containing the signature - * @param sig_len the number of bytes in the signature byte array - */ - bool verify(const byte message[], u32bit mess_len, - const byte signature[], u32bit sig_len) const; - protected: GOST_3410_PublicKey() {} }; |