MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / use_aes_ni

Method use_aes_ni

libcppcryptfs/crypt/aes.cpp:57–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55
56
57bool 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
66void AES::initialize_keys(const unsigned char *key, int keylen /* in bits */,
67 AES_KEY *encrypt_key, AES_KEY *decrypt_key)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected