;
SecretKeySpec secret_key = new SecretKeySpec(APPSECRET.getBytes(), "HmacSHA256");
sha256_HMAC.init(secret_key);
String hash = Base64.encodeBase64String(sha256_HMAC.doFinal(to_enc.getBytes()));
main方法的加密代码呢
字节数对齐也是一致的?补零补0xff?
需要计算的byte[]断点观察是一摸一样的?
UNROLL_LOOPS也是设置的一样?