The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Crypt::KDF::_base

METHODS

$digest = $kdf->digest( $digest )

Sets/gets the digest to be used as the source of derived keys.

$digestparam = $kdf->digestparam( $digestparam )

Sets/gets the optional parameters for the digest used to derive keys.

$seed = $kdf->seed( $seed )

Sets/gets the seed to be used to derive keys.

$counter = $kdf->counter( $counter )

Sets/gets the start value of counter used to derive keys.

$iv = $kdf->iv( $iv )

Sets/gets the optional iv to be used to derive keys.

( $derivedKey, $derivedIV ) = $kdf->kdf_iv( $kLen, $ivLen )

Return length bytes generated from the derivation function.

EXAMPLES

SEE ALSO

COPYRIGHT

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHORS