The module Crypt::PBKDF2 Provides methods to get at the hash in binary, base64, and hex encoded versions of the hash. Is it possible to provide methods to access these from within Digest::PBKDF2 ?
This would make it consistent with other modules in the Digest:: namespace, such as Digest::SHA which provides the following methods.
$digest = $sha->digest;
$digest = $sha->hexdigest;
$digest = $sha->b64digest;
The module
Crypt::PBKDF2Provides methods to get at the hash in binary, base64, and hex encoded versions of the hash. Is it possible to provide methods to access these from withinDigest::PBKDF2?This would make it consistent with other modules in the
Digest::namespace, such asDigest::SHAwhich provides the following methods.