mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
194 lines
4.8 KiB
194 lines
4.8 KiB
#ifndef AES_H__ |
|
#define AES_H__ |
|
|
|
#include <inttypes.h> |
|
#include <cryptopp/modes.h> |
|
#include <cryptopp/aes.h> |
|
#include "Identity.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace crypto |
|
{ |
|
struct CipherBlock |
|
{ |
|
uint8_t buf[16]; |
|
|
|
void operator^=(const CipherBlock& other) // XOR |
|
{ |
|
#if defined(__x86_64__) // for Intel x64 |
|
__asm__ |
|
( |
|
"movups (%[buf]), %%xmm0 \n" |
|
"movups (%[other]), %%xmm1 \n" |
|
"pxor %%xmm1, %%xmm0 \n" |
|
"movups %%xmm0, (%[buf]) \n" |
|
: |
|
: [buf]"r"(buf), [other]"r"(other.buf) |
|
: "%xmm0", "%xmm1", "memory" |
|
); |
|
#else |
|
// TODO: implement it better |
|
for (int i = 0; i < 16; i++) |
|
buf[i] ^= other.buf[i]; |
|
#endif |
|
} |
|
}; |
|
|
|
typedef i2p::data::Tag<32> AESKey; |
|
|
|
template<size_t sz> |
|
class AESAlignedBuffer // 16 bytes alignment |
|
{ |
|
public: |
|
|
|
AESAlignedBuffer () |
|
{ |
|
m_Buf = m_UnalignedBuffer; |
|
uint8_t rem = ((size_t)m_Buf) & 0x0f; |
|
if (rem) |
|
m_Buf += (16 - rem); |
|
} |
|
|
|
operator uint8_t * () { return m_Buf; }; |
|
operator const uint8_t * () const { return m_Buf; }; |
|
|
|
private: |
|
|
|
uint8_t m_UnalignedBuffer[sz + 15]; // up to 15 bytes alignment |
|
uint8_t * m_Buf; |
|
}; |
|
|
|
|
|
#ifdef AESNI |
|
class ECBCryptoAESNI |
|
{ |
|
public: |
|
|
|
uint8_t * GetKeySchedule () { return m_KeySchedule; }; |
|
|
|
protected: |
|
|
|
void ExpandKey (const AESKey& key); |
|
|
|
private: |
|
|
|
AESAlignedBuffer<240> m_KeySchedule; // 14 rounds for AES-256, 240 bytes |
|
}; |
|
|
|
class ECBEncryptionAESNI: public ECBCryptoAESNI |
|
{ |
|
public: |
|
|
|
void SetKey (const AESKey& key) { ExpandKey (key); }; |
|
void Encrypt (const CipherBlock * in, CipherBlock * out); |
|
}; |
|
|
|
class ECBDecryptionAESNI: public ECBCryptoAESNI |
|
{ |
|
public: |
|
|
|
void SetKey (const AESKey& key); |
|
void Decrypt (const CipherBlock * in, CipherBlock * out); |
|
}; |
|
|
|
typedef ECBEncryptionAESNI ECBEncryption; |
|
typedef ECBDecryptionAESNI ECBDecryption; |
|
|
|
#else // use crypto++ |
|
|
|
class ECBEncryption |
|
{ |
|
public: |
|
|
|
void SetKey (const AESKey& key) |
|
{ |
|
m_Encryption.SetKey (key, 32); |
|
} |
|
void Encrypt (const CipherBlock * in, CipherBlock * out) |
|
{ |
|
m_Encryption.ProcessData (out->buf, in->buf, 16); |
|
} |
|
|
|
private: |
|
|
|
CryptoPP::ECB_Mode<CryptoPP::AES>::Encryption m_Encryption; |
|
}; |
|
|
|
class ECBDecryption |
|
{ |
|
public: |
|
|
|
void SetKey (const AESKey& key) |
|
{ |
|
m_Decryption.SetKey (key, 32); |
|
} |
|
void Decrypt (const CipherBlock * in, CipherBlock * out) |
|
{ |
|
m_Decryption.ProcessData (out->buf, in->buf, 16); |
|
} |
|
|
|
private: |
|
|
|
CryptoPP::ECB_Mode<CryptoPP::AES>::Decryption m_Decryption; |
|
}; |
|
|
|
|
|
#endif |
|
|
|
class CBCEncryption |
|
{ |
|
public: |
|
|
|
CBCEncryption () { memset (m_LastBlock.buf, 0, 16); }; |
|
CBCEncryption(const AESKey& key, const uint8_t* iv) |
|
: CBCEncryption() |
|
{ |
|
SetKey(key); |
|
SetIV(iv); |
|
} |
|
|
|
void SetKey (const AESKey& key) { m_ECBEncryption.SetKey (key); }; // 32 bytes |
|
void SetIV (const uint8_t * iv) { memcpy (m_LastBlock.buf, iv, 16); }; // 16 bytes |
|
|
|
void Encrypt (int numBlocks, const CipherBlock * in, CipherBlock * out); |
|
void Encrypt (const uint8_t * in, std::size_t len, uint8_t * out); |
|
void Encrypt (const uint8_t * in, uint8_t * out); // one block |
|
|
|
private: |
|
|
|
CipherBlock m_LastBlock; |
|
|
|
ECBEncryption m_ECBEncryption; |
|
}; |
|
|
|
class CBCDecryption |
|
{ |
|
public: |
|
|
|
CBCDecryption () { memset (m_IV.buf, 0, 16); }; |
|
|
|
CBCDecryption(const AESKey& key, const uint8_t* iv) |
|
: CBCDecryption() |
|
{ |
|
SetKey(key); |
|
SetIV(iv); |
|
} |
|
|
|
void SetKey (const AESKey& key) { m_ECBDecryption.SetKey (key); }; // 32 bytes |
|
void SetIV (const uint8_t * iv) { memcpy (m_IV.buf, iv, 16); }; // 16 bytes |
|
|
|
void Decrypt (int numBlocks, const CipherBlock * in, CipherBlock * out); |
|
void Decrypt (const uint8_t * in, std::size_t len, uint8_t * out); |
|
void Decrypt (const uint8_t * in, uint8_t * out); // one block |
|
|
|
private: |
|
|
|
CipherBlock m_IV; |
|
ECBDecryption m_ECBDecryption; |
|
}; |
|
|
|
} |
|
} |
|
|
|
#endif
|
|
|