-
- All Implemented Interfaces:
-
icu.windea.breezeframework.core.component.Component
@UnstableApi() public interface Encrypter implements Component
加密器。
加密器用于根据指定的加密算法,对字符串进行加密和解密,某些加密算法可能不支持解密。
-
-
Method Summary
Modifier and Type Method Description abstract ByteArrayencrypt(ByteArray value, ByteArray secret)加密指定的字节数组。 abstract ByteArraydecrypt(ByteArray value, ByteArray secret)解密指定的字节数组。某些加密算法可能不支持解密。 EncryptercomponentCopy(Map<String, Object> componentParams)StringgetComponentId()Map<String, Object>getComponentParams()-
-
Method Detail
-
componentCopy
Encrypter componentCopy(Map<String, Object> componentParams)
-
getComponentId
String getComponentId()
-
getComponentParams
Map<String, Object> getComponentParams()
-
-
-
-