接口 Actuator.Decoder
-
- 所有超级接口:
Encryptor.Decoder
- 所有已知实现类:
Base64Actuator
,BlowfishActuator
,RSAActuator
,URIActuator
- 封闭接口:
- Actuator
public static interface Actuator.Decoder extends 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 DecodeException
- 指定者:
decode
在接口中Encryptor.Decoder
- 抛出:
DecodeException
-
decode
default byte[] decode(String data) throws DecodeException
- 指定者:
decode
在接口中Encryptor.Decoder
- 抛出:
DecodeException
-
decodeToString
default String decodeToString(String data) throws DecodeException
- 指定者:
decodeToString
在接口中Encryptor.Decoder
- 抛出:
DecodeException
-
decodeToString
default String decodeToString(byte[] data) throws DecodeException
- 指定者:
decodeToString
在接口中Encryptor.Decoder
- 抛出:
DecodeException
-
-