diff options
Diffstat (limited to 'src/lib/block/aes_ni/aes_ni.h')
-rw-r--r-- | src/lib/block/aes_ni/aes_ni.h | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/lib/block/aes_ni/aes_ni.h b/src/lib/block/aes_ni/aes_ni.h new file mode 100644 index 000000000..aac6b0808 --- /dev/null +++ b/src/lib/block/aes_ni/aes_ni.h @@ -0,0 +1,77 @@ +/* +* AES using AES-NI instructions +* (C) 2009 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ + +#ifndef BOTAN_AES_NI_H__ +#define BOTAN_AES_NI_H__ + +#include <botan/block_cipher.h> + +namespace Botan { + +/** +* AES-128 using AES-NI +*/ +class BOTAN_DLL AES_128_NI : public Block_Cipher_Fixed_Params<16, 16> + { + public: + size_t parallelism() const { return 4; } + + void encrypt_n(const byte in[], byte out[], size_t blocks) const; + void decrypt_n(const byte in[], byte out[], size_t blocks) const; + + void clear(); + std::string name() const { return "AES-128"; } + BlockCipher* clone() const { return new AES_128_NI; } + private: + void key_schedule(const byte[], size_t); + + secure_vector<u32bit> EK, DK; + }; + +/** +* AES-192 using AES-NI +*/ +class BOTAN_DLL AES_192_NI : public Block_Cipher_Fixed_Params<16, 24> + { + public: + size_t parallelism() const { return 4; } + + void encrypt_n(const byte in[], byte out[], size_t blocks) const; + void decrypt_n(const byte in[], byte out[], size_t blocks) const; + + void clear(); + std::string name() const { return "AES-192"; } + BlockCipher* clone() const { return new AES_192_NI; } + private: + void key_schedule(const byte[], size_t); + + secure_vector<u32bit> EK, DK; + }; + +/** +* AES-256 using AES-NI +*/ +class BOTAN_DLL AES_256_NI : public Block_Cipher_Fixed_Params<16, 32> + { + public: + size_t parallelism() const { return 4; } + + void encrypt_n(const byte in[], byte out[], size_t blocks) const; + void decrypt_n(const byte in[], byte out[], size_t blocks) const; + + void clear(); + std::string name() const { return "AES-256"; } + BlockCipher* clone() const { return new AES_256_NI; } + private: + void key_schedule(const byte[], size_t); + + secure_vector<u32bit> EK, DK; + }; + +} + +#endif |