Closed csehtamas closed 3 years ago
In KspEnclosure the exists method doesn't use deriveKey which breaks the method in case of encryption is enabled.
KspEnclosure
exists
deriveKey
This
internal fun exists( key: String ) = sharedReader.exists(key)
should be
internal fun exists( key: String ) = sharedReader.exists(deriveKey(key))
Tested with 2.2.4 and 2.2.5
Thanks! Nifty catch. Will be releasing an update today to address this, along with some documentation for internal classes and possibly some testing.
In
KspEnclosure
theexists
method doesn't usederiveKey
which breaks the method in case of encryption is enabled.This
should be
Tested with 2.2.4 and 2.2.5