-
-
Save MarcoSignoretto/9e38b5fa414af360f869ef4c675de344 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
interface SecurityKey | |
interface BinaryData | |
interface StringCipher { | |
fun encrypt(securityKey: SecurityKey, plainData: String): BinaryData | |
fun decrypt(securityKey: SecurityKey, encryptedData: BinaryData): String | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment