EncryptedKVStorage: can destroy exisint creating one with a new key

This commit is contained in:
Sergey Chernov 2025-03-16 16:53:05 +03:00
parent fbbe4d3a34
commit 85b13ed8ca

View File

@ -74,12 +74,13 @@ class StorageTest {
val c1 = EncryptedKVStorage(plain, SymmetricKey.new(), removeExisting = false) // 1
c1.write("hello", "world")
assertFailsWith<DecryptionFailedException> {
val c2 = EncryptedKVStorage(plain, SymmetricKey.new(), removeExisting = false) // 2
EncryptedKVStorage(plain, SymmetricKey.new(), removeExisting = false) // 2
}
val c2 = EncryptedKVStorage(plain, SymmetricKey.new(), removeExisting = true) // 2
EncryptedKVStorage(plain, SymmetricKey.new(), removeExisting = true) // 2
}
}
@Suppress("unused")
fun KVStorage.dump() {
for (k in keys)
println("$k: ${this[k]?.toDump()}")