mirror of
https://github.com/vector-im/riotX-android
synced 2025-10-06 00:02:48 +02:00
use pkEncryption, to properly close it.
This commit is contained in:
@@ -46,7 +46,9 @@ internal object ScanEncryptorUtils {
|
|||||||
return if (publicServerKey != null) {
|
return if (publicServerKey != null) {
|
||||||
// Note: fromBase64 can throw Exception
|
// Note: fromBase64 can throw Exception
|
||||||
val pkEncryption = PkEncryption.fromBase64(key = publicServerKey)
|
val pkEncryption = PkEncryption.fromBase64(key = publicServerKey)
|
||||||
val pkMessage = pkEncryption.encrypt(DownloadBody(encryptedInfo).toCanonicalJson())
|
val pkMessage = pkEncryption.use {
|
||||||
|
pkEncryption.encrypt(DownloadBody(encryptedInfo).toCanonicalJson())
|
||||||
|
}
|
||||||
DownloadBody(
|
DownloadBody(
|
||||||
encryptedBody = EncryptedBody(
|
encryptedBody = EncryptedBody(
|
||||||
cipherText = pkMessage.ciphertext,
|
cipherText = pkMessage.ciphertext,
|
||||||
|
Reference in New Issue
Block a user