Method
encrypt
加密字符串 @param secretKey @param Str @return
(String secretKey, String Str)
Source from the content-addressed store, hash-verified
| 129 | * @return |
| 130 | */ |
| 131 | public static String encrypt(String secretKey, String Str) { |
| 132 | return Decode.str2HexStr(AESEncode(secretKey, Str)); |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * 解密字符串 |