public class Security {
public native byte[] DecryptMsg(String strMsg);
public native byte[] EncryptMsg(String strMsg);
public native byte[] EncryptPass(String strPass);
static{
System.loadLibrary("security");
}
LEATH
相关分类