AESGCMUtil类
该类提供加密和解密方法。
decryptGCM
功能描述
解密密文。
语法格式
public String decryptGCM(String password,
String encryptedtext)
参数说明
password:密钥
encryptedtext:密文
返回值
明文。
encryptGCM
功能描述
对明文进行加密。
语法格式
public String encryptGCM(String password,
String plaintext)
参数说明
password:密钥
plaintext:明文
返回值
密文。
getSecretKeySpec
功能描述
构造AES私钥。
语法格式
public static SecretKeySpec getSecretKeySpec(String password)
参数说明
password:密钥
返回值
AES私钥。
其他
仅支持JDBC4.2及以上版本。