You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added new DestroyableSecretKey, which is a SecretKey that is both AutoCloseable and Cloneable. It is intended to be used in try-with-resource statements and will destroy itself as soon as it is no longer used. When a copy is needed that should outlive its surrounding scope, it must be explicitly cloned.
Added new Masterkey, which is a 512 bit DestroyableSecretKey consisting of two 256 bit keys for encryption and message authentication, as required by Cryptomator's encryption scheme.
Introduced new MasterkeyLoader, which allows implementations of custom Masterkey suppliers.