Created
January 25, 2022 17:07
-
-
Save Jaosrikate/0b93c3cadf436760a4fb4ffcb2d7aa6d 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
override fun getCipherForEncryption(keyName: String): Cipher { | |
val cipher = getCipher() | |
val secretKey = getOrCreateSecretKey(keyName) | |
cipher.init(Cipher.ENCRYPT_MODE, secretKey) | |
return cipher | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment