@Nullable static fun decryptSensitive(cipherText: Bytes, password: String): Bytes?
(source)@Nullable static fun decryptSensitive(cipherText: ByteArray, password: String): ByteArray?
(source)
Decrypt a message using a password, using PasswordHash for the key generation (with the currently recommended algorithm and limits on operations and memory that are suitable for sensitive use-cases).
cipherText
- The cipher text to decrypt.
password
- The password that was used for encryption.
Return
The decrypted data, or null
if verification failed.
@Nullable static fun decryptSensitive(cipherText: Bytes, password: String, algorithm: Algorithm): Bytes?
(source)@Nullable static fun decryptSensitive(cipherText: ByteArray, password: String, algorithm: Algorithm): ByteArray?
(source)
Decrypt a message using a password, using PasswordHash for the key generation (with limits on operations and memory that are suitable for sensitive use-cases).
cipherText
- The cipher text to decrypt.
password
- The password that was used for encryption.
algorithm
- The algorithm that was used for encryption.
Return
The decrypted data, or null
if verification failed.