Skip to content

Instantly share code, notes, and snippets.

@Moligaloo
Created July 4, 2012 19:13
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Moligaloo/3049027 to your computer and use it in GitHub Desktop.
Save Moligaloo/3049027 to your computer and use it in GitHub Desktop.
Crypto++ DES encryption/decryption
#include <QtCore/QCoreApplication>
#include <crypto++/des.h>
#include <stdio.h>
// keyString 是一个密钥,必须保证长度要超过 16
// block 是要处理的数据,处理后的数据也同时存放在 block 里,必须保证它的长度为 8 的整倍数
// length 是 block 的长度,必须保证它为 8 的整倍数
// direction 是表示是否是加密还是解密,若是加密,则用 CryptoPP::ENCRYPTION, 解密用 CryptoPP::DECRYPTION
void DES_Process(const char *keyString, byte *block, size_t length, CryptoPP::CipherDir direction){
using namespace CryptoPP;
byte key[DES_EDE2::KEYLENGTH];
memcpy(key, keyString, DES_EDE2::KEYLENGTH);
BlockTransformation *t = NULL;
if(direction == ENCRYPTION)
t = new DES_EDE2_Encryption(key, DES_EDE2::KEYLENGTH);
else
t = new DES_EDE2_Decryption(key, DES_EDE2::KEYLENGTH);
int steps = length / t->BlockSize();
for(int i=0; i<steps; i++){
int offset = i * t->BlockSize();
t->ProcessBlock(block + offset);
}
delete t;
}
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
byte block[1024] = "++++++++--------********////////";
const char *key = "http://qsanguosha.org/forum";
printf("original text: %s\n", block);
DES_Process(key, block, 16, CryptoPP::ENCRYPTION);
printf("Encrypt: %s\n", block);
DES_Process(key, block, 16, CryptoPP::DECRYPTION);
printf("Decrypt: %s\n", block);
return a.exec();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment