| 85 | } |
| 86 | |
| 87 | void AESCrypt::resetStatus(const AESCryptStatus &status) { |
| 88 | m_number = status.m_number; |
| 89 | memcpy(m_vector, status.m_vector, AES_IV_LEN); |
| 90 | } |
| 91 | |
| 92 | void AESCrypt::getKey(void *output) const { |
| 93 | if (output) { |
nothing calls this directly
no outgoing calls
no test coverage detected