1 回答
TA贡献1853条经验 获得超18个赞
在 PHP 代码中,使用 AES-256。tiny-AES-c默认仅支持 AES-128。为了支持 AES-256,必须在 aes.h 中定义相应的常量,即必须在here
//#define AES256 1
中注释该行。PHP 默认使用 PKCS7 填充。应在 C 代码中删除填充。
PHP 隐式地将太短的键用零值填充到指定的长度。由于PHP代码中指定了AES-256-CBC,因此密钥测试扩展如下:
test\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0
在 C 代码中,必须使用此扩展密钥(另请参阅@r3mainer 的注释)。
为了在两个代码之间传输密文,必须使用合适的编码,例如 Base64 或十六进制(另请参阅@Ôrel 的注释)。对于后者,
bin2hex
可以应用于PHP代码中的密文。一个可能的 C 实现是:
// Pad the key with zero values
uint8_t key[] = "test\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
uint8_t iv[] = "aaaaaaaaaaaaaaaa";
uint8_t ciphertextHex[] = "3771e837685ff5d4173801900de6e14c";
// Hex decode (e.g. https://stackoverflow.com/a/3409211/9014097)
uint8_t ciphertext[sizeof(ciphertextHex) / 2], * pos = ciphertextHex;
for (size_t count = 0; count < sizeof ciphertext / sizeof * ciphertext; count++) {
sscanf((const char*)pos, "%2hhx", &ciphertext[count]);
pos += 2;
}
// Decrypt
struct AES_ctx ctx;
AES_init_ctx_iv(&ctx, key, iv);
AES_CBC_decrypt_buffer(&ctx, ciphertext, sizeof(ciphertext));
// Remove the PKCS7 padding
uint8_t ciphertextLength = sizeof(ciphertext);
uint8_t numberOfPaddingBytes = ciphertext[ciphertextLength - 1];
ciphertext[ciphertextLength - numberOfPaddingBytes] = 0;
printf("%s", ciphertext);
- 1 回答
- 0 关注
- 148 浏览
添加回答
举报