任何人都可以告诉我为什么我对这段 testkode 有问题,GWAN 在被调用时会崩溃。
gwan API 帮助:void aes_init(aes_t *ctx, u32 mode, u8 *key, u32 keylen);
我的测试代码:
aes_t *testaes = 0;
u32 ed = 0;
u32 keylen = 128;
u8 *testkey = 0;
testkey = (u8*)strdup("B00DDF9D93E199EFEAE967805E0A5228");
aes_init( testaes, ed, testkey , keylen );
我真的很讨厌仅仅因为我不理解已经包含的内容而实现另一个加密库。