| 59 | } |
| 60 | |
| 61 | DSASigner::DSASigner (const uint8_t * signingPrivateKey, const uint8_t * signingPublicKey) |
| 62 | { |
| 63 | BIGNUM * priv = BN_bin2bn (signingPrivateKey, DSA_PRIVATE_KEY_LENGTH, NULL); |
| 64 | m_PrivateKey = CreateDSA (nullptr, priv); |
| 65 | BN_free (priv); |
| 66 | } |
| 67 | |
| 68 | DSASigner::~DSASigner () |
| 69 | { |
nothing calls this directly
no test coverage detected