summaryrefslogtreecommitdiffstats
path: root/crypto/ec_signature_creator_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ec_signature_creator_impl.h')
-rw-r--r--crypto/ec_signature_creator_impl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/ec_signature_creator_impl.h b/crypto/ec_signature_creator_impl.h
index f8baf86..8ef67cd 100644
--- a/crypto/ec_signature_creator_impl.h
+++ b/crypto/ec_signature_creator_impl.h
@@ -19,8 +19,12 @@ class ECSignatureCreatorImpl : public ECSignatureCreator {
int data_len,
std::vector<uint8>* signature) OVERRIDE;
+ virtual bool DecodeSignature(const std::vector<uint8>& der_sig,
+ std::vector<uint8>* out_raw_sig) OVERRIDE;
+
private:
ECPrivateKey* key_;
+ size_t signature_len_;
DISALLOW_COPY_AND_ASSIGN(ECSignatureCreatorImpl);
};