接口 Actuator.Encoder
-
- 所有超级接口:
Encryptor.Encoder
- 所有已知实现类:
Base64Actuator
,BlowfishActuator
,MD5Actuator
,RSAActuator
,URIActuator
- 封闭接口:
- Actuator
public static interface Actuator.Encoder extends Encryptor.Encoder
-
-
方法概要
修饰符和类型 方法 说明 byte[]
encode(byte[] b)
default byte[]
encode(String b)
default String
encodeToString(byte[] b)
default String
encodeToString(String b)
-
-
-
方法详细资料
-
encodeToString
default String encodeToString(byte[] b) throws EncodeException
- 指定者:
encodeToString
在接口中Encryptor.Encoder
- 抛出:
EncodeException
-
encodeToString
default String encodeToString(String b) throws EncodeException
- 指定者:
encodeToString
在接口中Encryptor.Encoder
- 抛出:
EncodeException
-
encode
byte[] encode(byte[] b) throws EncodeException
- 指定者:
encode
在接口中Encryptor.Encoder
- 抛出:
EncodeException
-
encode
default byte[] encode(String b) throws EncodeException
- 指定者:
encode
在接口中Encryptor.Encoder
- 抛出:
EncodeException
-
-