-
- 所有已知实现类:
Base64Actuator
,BlowfishActuator
,RSAActuator
,URIActuator
,XOREncryptor
- 封闭接口:
- Encryptor
public static interface Encryptor.Decoder
-
-
方法概要
修饰符和类型 方法 说明 byte[]
decode(byte[] b)
default byte[]
decode(String data)
default String
decodeToString(byte[] data)
default String
decodeToString(String data)
-
-
-
方法详细资料
-
decode
byte[] decode(byte[] b) throws EncryptException
- 抛出:
EncryptException
-
decode
default byte[] decode(String data) throws EncryptException
- 抛出:
EncryptException
-
decodeToString
default String decodeToString(String data) throws EncryptException
- 抛出:
EncryptException
-
decodeToString
default String decodeToString(byte[] data) throws EncryptException
- 抛出:
EncryptException
-
-