| 328 | |
| 329 | |
| 330 | void cAESCFBDecryptor::Init(const Byte a_Key[16], const Byte a_IV[16]) |
| 331 | { |
| 332 | ASSERT(!IsValid()); // Cannot Init twice |
| 333 | |
| 334 | memcpy(m_IV, a_IV, 16); |
| 335 | aes_setkey_enc(&m_Aes, a_Key, 128); |
| 336 | m_IsValid = true; |
| 337 | } |
| 338 | |
| 339 | |
| 340 |
no outgoing calls
no test coverage detected