| 31 | } |
| 32 | |
| 33 | bool ElGamalDecryptor::Decrypt (const uint8_t * encrypted, uint8_t * data) |
| 34 | { |
| 35 | return ElGamalDecrypt (m_PrivateKey, encrypted, data); |
| 36 | } |
| 37 | |
| 38 | ECIESP256Encryptor::ECIESP256Encryptor (const uint8_t * pub) |
| 39 | { |
nothing calls this directly
no test coverage detected