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