接口 Decryptor
- 所有已知子接口:
CipherManager
- 所有已知实现类:
DefaultCipherManager,SIM2Decryptor,SimpleDecryptor,ZLDecryptor
public interface Decryptor
解密器
- 作者:
- Administrator
-
方法概要
-
方法详细资料
-
init
初始化- 参数:
secret-
-
decrypt
byte[] decrypt(byte[] cipherBytes) 解密- 参数:
cipherBytes- 密文- 返回:
- 明文
-
decrypt
byte[] decrypt(byte[] secretBytes, byte[] cipherBytes) 解密- 参数:
secretBytes- 密钥cipherBytes- 密文- 返回:
- 明文
-
decrypt
解密- 参数:
cipherText- 密文- 返回:
- 明文
-
decrypt
解密- 参数:
secretText- 密钥cipherText- 密文- 返回:
- 明文
-