# Functions
Decode the encoded digest into a algorithm.Digest.
New returns a new scrypt.Hasher with the provided functional options applied.
RegisterDecoder the decoder with the algorithm.DecoderRegister.
WithBlockSize is an alias for WithR.
WithK adjusts the key length of the resulting scrypt.Digest.
WithKeyLength is an alias for WithK.
WithLN sets the ln parameter (logN) of the resulting scrypt.Digest.
WithP sets the p parameter (parallelism factor) of the resulting scrypt.Digest.
WithParallelism is an alias for WithP.
WithR sets the r parameter (block size) of the resulting scrypt.Digest.
WithS adjusts the salt length of the resulting scrypt.Digest.
WithSaltLength is an alias for WithS.
# Constants
AlgName is the name for this algorithm.
BlockSizeDefault is the default block size.
BlockSizeMax is the maximum block size accepted.
BlockSizeMin is the minimum block size accepted.
EncodingFormat is the format of the encoded digest.
IterationsDefault is the default number of iterations.
IterationsMax is the maximum number of iterations accepted.
IterationsMin is the minimum number of iterations accepted.
KeyLengthMax is the maximum key size accepted.
KeyLengthMin is the minimum key length accepted.
ParallelismDefault is the default parallelism factor.
ParallelismMax is the maximum parallelism factor accepted.
ParallelismMin is the minimum parallelism factor accepted.
SaltLengthMax is the maximum salt length accepted.
SaltLengthMin is the minimum salt length accepted.
# Type aliases
Opt describes the functional option pattern for the scrypt.Hasher.