NAME
Crypt::OpenSSL3::KDF - Key derivation algorithms
VERSION
version 0.002
SYNOPSIS
my $kdf = Crypt::OpenSSL3::KDF->fetch('HKDF');
my $context = Crypt::OpenSSL3::KDF::Context->new($kdf);
my $key = 'Hello, World!';
my $digest = 'SHA2-256';
my $derived = $context->derive(32, { key => $key, digest => $digest });
METHODS
fetch
get_description
get_name
get_param
is_a
list_all_provided
names_list_all
AUTHOR
Leon Timmermans <fawaka@gmail.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2025 by Leon Timmermans.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.