mirror of https://github.com/PurpleI2P/i2pd.git
orignal
11 years ago
3 changed files with 86 additions and 1 deletions
@ -0,0 +1,30 @@ |
|||||||
|
#include "aes.h" |
||||||
|
|
||||||
|
namespace i2p |
||||||
|
{ |
||||||
|
namespace crypto |
||||||
|
{ |
||||||
|
void CBCEncryption::Encrypt (int numBlocks, const ChipherBlock * in, ChipherBlock * out) |
||||||
|
{ |
||||||
|
for (int i = 0; i < numBlocks; i++) |
||||||
|
{ |
||||||
|
m_LastBlock.ll[0] ^= in[i].ll[0]; |
||||||
|
m_LastBlock.ll[1] ^= in[i].ll[1]; |
||||||
|
m_ECBEncryption.ProcessData (m_LastBlock.buf, m_LastBlock.buf, 16); |
||||||
|
out[i] = m_LastBlock; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
void CBCDecryption::Decrypt (int numBlocks, const ChipherBlock * in, ChipherBlock * out) |
||||||
|
{ |
||||||
|
for (int i = 0; i < numBlocks; i++) |
||||||
|
{ |
||||||
|
m_ECBDecryption.ProcessData (out[i].buf, in[i].buf, 16); |
||||||
|
out[i].ll[0] ^= m_IV.ll[0]; |
||||||
|
out[i].ll[1] ^= m_IV.ll[1]; |
||||||
|
m_IV = in[i]; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
@ -0,0 +1,55 @@ |
|||||||
|
#ifndef AES_H__ |
||||||
|
#define AES_H__ |
||||||
|
|
||||||
|
#include <inttypes.h> |
||||||
|
#include <cryptopp/modes.h> |
||||||
|
#include <cryptopp/aes.h> |
||||||
|
|
||||||
|
namespace i2p |
||||||
|
{ |
||||||
|
namespace crypto |
||||||
|
{ |
||||||
|
union ChipherBlock |
||||||
|
{ |
||||||
|
uint8_t buf[16]; |
||||||
|
uint64_t ll[2]; |
||||||
|
}; |
||||||
|
|
||||||
|
class CBCEncryption |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
CBCEncryption () { memset (m_LastBlock.buf, 0, 16); }; |
||||||
|
|
||||||
|
void SetKey (uint8_t * key) { m_ECBEncryption.SetKey (key, 32); }; // 32 bytes
|
||||||
|
void SetIV (uint8_t * iv) { memcpy (m_LastBlock.buf, iv, 16); }; // 16 bytes
|
||||||
|
|
||||||
|
void Encrypt (int numBlocks, const ChipherBlock * in, ChipherBlock * out); |
||||||
|
|
||||||
|
private: |
||||||
|
|
||||||
|
ChipherBlock m_LastBlock; |
||||||
|
CryptoPP::ECB_Mode<CryptoPP::AES>::Encryption m_ECBEncryption; |
||||||
|
}; |
||||||
|
|
||||||
|
class CBCDecryption |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
CBCDecryption () { memset (m_IV.buf, 0, 16); }; |
||||||
|
|
||||||
|
void SetKey (uint8_t * key) { m_ECBDecryption.SetKey (key, 32); }; // 32 bytes
|
||||||
|
void SetIV (uint8_t * iv) { memcpy (m_IV.buf, iv, 16); }; // 16 bytes
|
||||||
|
|
||||||
|
void Decrypt (int numBlocks, const ChipherBlock * in, ChipherBlock * out); |
||||||
|
|
||||||
|
private: |
||||||
|
|
||||||
|
ChipherBlock m_IV; |
||||||
|
CryptoPP::ECB_Mode<CryptoPP::AES>::Decryption m_ECBDecryption; |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
#endif |
||||||
|
|
Loading…
Reference in new issue