|
|
|
@ -5,6 +5,7 @@
@@ -5,6 +5,7 @@
|
|
|
|
|
#include <cryptopp/dsa.h> |
|
|
|
|
#include <cryptopp/asn.h> |
|
|
|
|
#include <cryptopp/oids.h> |
|
|
|
|
#include <cryptopp/osrng.h> |
|
|
|
|
#include <cryptopp/eccrypto.h> |
|
|
|
|
#include "CryptoConst.h" |
|
|
|
|
|
|
|
|
@ -22,6 +23,14 @@ namespace crypto
@@ -22,6 +23,14 @@ namespace crypto
|
|
|
|
|
virtual size_t GetSignatureLen () const = 0; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
class Singer |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
|
|
|
|
|
virtual ~Singer () {}; |
|
|
|
|
virtual void Sign (CryptoPP::RandomNumberGenerator& rnd, const uint8_t * buf, int len, uint8_t * signature) = 0; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
class DSAVerifier: public Verifier |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
@ -45,6 +54,26 @@ namespace crypto
@@ -45,6 +54,26 @@ namespace crypto
|
|
|
|
|
CryptoPP::DSA::PublicKey m_PublicKey; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
class DSASinger: public Singer |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
|
|
|
|
|
DSASinger (const uint8_t * signingPrivateKey) |
|
|
|
|
{ |
|
|
|
|
m_PrivateKey.Initialize (dsap, dsaq, dsag, CryptoPP::Integer (signingPrivateKey, 20)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void Sign (CryptoPP::RandomNumberGenerator& rnd, const uint8_t * buf, int len, uint8_t * signature) |
|
|
|
|
{ |
|
|
|
|
CryptoPP::DSA::Signer signer (m_PrivateKey); |
|
|
|
|
signer.SignMessage (rnd, buf, len, signature); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
|
|
|
|
|
CryptoPP::DSA::PrivateKey m_PrivateKey; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
class ECDSAP256Verifier: public Verifier |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
@ -69,6 +98,26 @@ namespace crypto
@@ -69,6 +98,26 @@ namespace crypto
|
|
|
|
|
|
|
|
|
|
CryptoPP::ECDSA<CryptoPP::ECP, CryptoPP::SHA256>::PublicKey m_PublicKey; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
class ECDSAP256Singer: public Singer |
|
|
|
|
{ |
|
|
|
|
public: |
|
|
|
|
|
|
|
|
|
ECDSAP256Singer (const uint8_t * signingPrivateKey) |
|
|
|
|
{ |
|
|
|
|
m_PrivateKey.Initialize (CryptoPP::ASN1::secp256r1(), CryptoPP::Integer (signingPrivateKey, 32)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void Sign (CryptoPP::RandomNumberGenerator& rnd, const uint8_t * buf, int len, uint8_t * signature) |
|
|
|
|
{ |
|
|
|
|
CryptoPP::ECDSA<CryptoPP::ECP, CryptoPP::SHA256>::Signer signer (m_PrivateKey); |
|
|
|
|
signer.SignMessage (rnd, buf, len, signature); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
|
|
|
|
|
CryptoPP::ECDSA<CryptoPP::ECP, CryptoPP::SHA256>::PrivateKey m_PrivateKey; |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|