Record Class Cryptor.KeyDerivationResult

java.lang.Object
java.lang.Record
page.codeberg.friedolyn.crypto.Cryptor.KeyDerivationResult
Record Components:
derivedKey - The encryption secret that was derived from some human-readable password.
argon2Configuration - The Argon2 parameters that were used to derive the key.
Enclosing class:
Cryptor

public static record Cryptor.KeyDerivationResult(byte[] derivedKey, Argon2Configuration argon2Configuration) extends Record
The result of a key derivation operation.