NAME
Crypt::OpenSSL3::Signature - Signature algorithms
VERSION
version 0.010
SYNOPSIS
my $alg = Crypt::OpenSSL3::Signature->fetch('RSA-SHA2-512');
my $ctx = Crypt::OpenSSL3::PKey::Context->new($pkey);
$ctx->sign_message_init($alg, { 'pad-mode' => 'pss' });
while (my $data = $input->get_data) {
$ctx->sign_message_update($data);
}
my $signature = $ctx->sign_message_final;
DESCRIPTION
This class allows you to fetch various signing mechanisms, it's primary used with PKey contexts to initialize signing or verifying.
METHODS
fetch
get_description
get_name
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, licensed under:
The Apache License, Version 2.0, January 2004