Crypto ++:用Python加密,用C ++解密

时间:2014-09-03 16:36:39

标签: python c++ encryption

我正在尝试执行以下操作:在python脚本中,我使用pycrypto lib加密某些文本。然后我将其保存到file.Then我加载该文件并使用我在Python中使用的相同密钥解码加密文本。它在stfDecryptor.MessageEnd()时失败;错误:

" CryptoCPP ::内存位置的InvalidCiphertext [some memory] ​​

这是我的代码:

的Python:

from Crypto.Cipher import AES
BLOCK_SIZE = 16
PADDING = '{'

# one-liner to sufficiently pad the text to be encrypted
pad = lambda s: s + (BLOCK_SIZE - len(s) % BLOCK_SIZE) * PADDING
EncodeAES = lambda c, s: c.encrypt(pad(s))
secret = 'MyKey123456789ab' 

# create a cipher object using the random secret
cipher = AES.new(secret)

# encode a string
encoded = EncodeAES(cipher, textIn)

#save to file
fileOut = open("enc_shader.vert","w")
fileOut.write(encoded)
fileOut.close()

CPP:

 std::string key = "MyKey123456789ab";
 std::string iv = "aaaaaaaaaaaaaaaa";

 std::ifstream fileIn("enc_shader.vert");

std::stringstream buffer;
buffer << fileIn.rdbuf();
std::string ciphertext1 = buffer.str();
CryptoPP::AES::Decryption aesDecryption((byte*)key.c_str(), CryptoPP::AES::DEFAULT_KEYLENGTH);
CryptoPP::CBC_Mode_ExternalCipher::Decryption cbcDecryption( aesDecryption, (byte*)iv.c_str() );

CryptoPP::StreamTransformationFilter stfDecryptor(cbcDecryption, new CryptoPP::StringSink( decryptedtext ) );
stfDecryptor.Put( reinterpret_cast<const unsigned char*>( ciphertext1.c_str() ), ciphertext1.size() );
stfDecryptor.MessageEnd();//fails here.

从我读到的内容到端点应该像pycrypto一样只是CryptoCPP lib的包装器。我可以错过CPP端的填充吗?

更新

好的,我发现改变了填充方案:

 CryptoPP::StreamTransformationFilter stfDecryptor(cbcDecryption, new CryptoPP::StringSink( decryptedtext ) ,BlockPaddingSchemeDef::NO_PADDING);

解码CPP端的字符串。但解码后的字符串包含填充字符。 所以,如果原始字符串是&#34; aaaaaaaaaaaaaaaaa&#34;

解码后的字符串如下所示:

&#34; aaaaaaaaaaaaaaaaa {{{{{{{{{{{{{{{&#34;

添加15个字节以填充到32个字节。

为什么Crypto ++在解密时不会删除它们?

1 个答案:

答案 0 :(得分:3)

您的Python加密代码会手动添加“{”字符以填充块大小。这不是定义的填充模式,因此Crypto ++代码将无法使用集成填充方案删除填充。换句话说,您应该使用NO_PADDING解密,然后自己删除填充。

但是让Python代码使用PKCS#7填充会更好,所以你可以在Crypto ++中使用PKCS_PADDING作为选项。