forest606
forest606
现在支持了吗?
同步调用encode就没有问题,所以应该是并发引起的 确实有static字段: static state_t* state; // The array that stores the round keys. static uint8_t RoundKey[176]; // The Key input to the AES Program static const uint8_t* Key; #if defined(CBC)...
解决了,将 static state_t* state; static uint8_t RoundKey[176]; static const uint8_t* Key; 定义为局部变量,能够解决并发问题
好的,正在整理
帮我设置为开发者吧,一直提示我没有权限push AESJniEncrypt forest$ git push origin develop ERROR: Permission to BruceWind/AESJniEncrypt.git denied to forest606. fatal: Could not read from remote repository. Please make sure you have the correct access rights...
From 889c28113ffdc90e29541a711750308c5b2af635 Mon Sep 17 00:00:00 2001 From: "forest.liu" Date: Mon, 3 Jun 2019 19:54:53 +0800 Subject: [PATCH] Support concurrently call encrypt and decrypt --- aesjni/src/main/cpp/aes.c | 74 +++++++++++++++++++++++------------------------ 1...