Record Class Crypto.ParamsOfScrypt

java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Crypto.ParamsOfScrypt
Record Components:
password - The password bytes to be hashed. Must be encoded with `base64`.
salt - Salt bytes that modify the hash to protect against Rainbow table attacks. Must be encoded with `base64`.
logN - CPU/memory cost parameter
r - The block size parameter, which fine-tunes sequential memory read size and performance.
p - Parallelization parameter.
dkLen - Intended output length in octets of the derived key.
Enclosing class:
Crypto

public static record Crypto.ParamsOfScrypt(String password, String salt, Integer logN, Long r, Long p, Long dkLen) extends Record