我需要加密单个 AES 块。我不能使用任何模式,如 CBC 和其他。我看到的每个示例都使用流模式。
编辑:好的,我用下一种方式做了,但我真的不喜欢这个尝试。
void dec(const byte *key, const byte* xblock, const byte *cipher, byte *plain) {
AESDecryption d;
try {
const NameValuePairs &nvp = MakeParameters("", 0);
d.UncheckedSetKey(key, 16, nvp);
d.ProcessAndXorBlock(cipher, xblock, plain);
}
catch(...) {}
}