我正在尝试使用加密和解密算法处理问题,我使用下面的程序来测试我的要求,我意识到一个奇怪的问题.
我正在使用polarssl来满足我的加密和解密需求.
当我使用此命令在intel处理器上使用icc编译器编译它时,此程序运行良好:(来自polarssl的aes.c)
icc Deneme.c aes.c -o deneme
Run Code Online (Sandbox Code Playgroud)
输出:
Encryption result, encrypted value:
11 22 7 86 a2 d3 ed 95 b9 14 c0 57 f7 af 5f dc 93 66 77 68 44 12 9f 1b 72 6a ea 51 b8 f7 1d a4
Decryption result, plain array:
a2 d8 69 9c 77 73 c7 5e 1d 3b 83 26 6e 2f 35 30 9d f0 f2 e5 0 0 0 0 0 0 0 0 0 0 0 …Run Code Online (Sandbox Code Playgroud)