Skip to content

Instantly share code, notes, and snippets.

@Jaosrikate
Created January 25, 2022 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jaosrikate/0b93c3cadf436760a4fb4ffcb2d7aa6d to your computer and use it in GitHub Desktop.
Save Jaosrikate/0b93c3cadf436760a4fb4ffcb2d7aa6d to your computer and use it in GitHub Desktop.
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