-
public interface ITDEncrypt
-
-
Method Summary
Modifier and Type Method Description abstract StringsymmetricEncryptType()Symmetric encryption type. abstract StringencryptDataEvent(String event)Encrypt the buried data. abstract StringasymmetricEncryptType()Asymmetric encryption type. abstract StringencryptSymmetricKey(String publicKey)Encryption symmetric encryption key. -
-
Method Detail
-
symmetricEncryptType
abstract String symmetricEncryptType()
Symmetric encryption type.
-
encryptDataEvent
abstract String encryptDataEvent(String event)
Encrypt the buried data.
- Parameters:
event- Data before encryption
-
asymmetricEncryptType
abstract String asymmetricEncryptType()
Asymmetric encryption type.
-
encryptSymmetricKey
abstract String encryptSymmetricKey(String publicKey)
Encryption symmetric encryption key.
- Parameters:
publicKey- public key
-
-
-
-