📄 aesjni.java
字号:
package com.cmcc.common.util;
public class AesJni {
static {
System.out.println(System.getProperty("java.library.path"));
System.loadLibrary("cAes");
}
public native byte[] decode_aes(String key, byte[] iv, byte[] in, int len);
public native byte[] encode_aes(String key, byte[] iv, byte[] in, int len);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -