| 55 | |
| 56 | |
| 57 | bool AES::use_aes_ni() |
| 58 | { |
| 59 | #ifdef USE_AES_NI |
| 60 | if (HAVE_AES_NI) |
| 61 | return true; |
| 62 | #endif |
| 63 | return false; |
| 64 | } |
| 65 | |
| 66 | void AES::initialize_keys(const unsigned char *key, int keylen /* in bits */, |
| 67 | AES_KEY *encrypt_key, AES_KEY *decrypt_key) |
nothing calls this directly
no outgoing calls
no test coverage detected