| 327 | } |
| 328 | |
| 329 | void X25519Keys::GetPrivateKey (uint8_t * priv) const |
| 330 | { |
| 331 | size_t len = 32; |
| 332 | EVP_PKEY_get_raw_private_key (m_Pkey, priv, &len); |
| 333 | } |
| 334 | |
| 335 | void X25519Keys::SetPrivateKey (const uint8_t * priv, bool calculatePublic) |
| 336 | { |
no outgoing calls
no test coverage detected