possibly display of what has been discovered, for example an
application that wants to display the loaded providers and what they
may offer, but also for constructors, such as
-L<ossl_construct_method(3)>.
+L<ossl_method_construct(3)>.
=head1 SEE ALSO
-L<ossl_construct_method(3)>, L<EVP_MAC_do_all(3)>
+L<ossl_method_construct(3)>, L<EVP_MAC_do_all_provided(3)>
=head1 HISTORY
x509
- OpenSSL application commands
+=for comment foreign manuals: apropos(1)
+
=head1 SYNOPSIS
=for openssl generic
=head1 SEE ALSO
L<EVP_KDF(3)>,
-L<EVP_KDF_CTX_new_id(3)>,
L<EVP_KDF_CTX_free(3)>,
-L<EVP_KDF_ctrl(3)>,
L<EVP_KDF_size(3)>,
L<EVP_KDF_derive(3)>,
L<EVP_KDF(3)/PARAMETERS>
fetched implicitly using default search criteria.
Implicit fetching can also occur with functions such as
-L<EVP_PKEY_CTX_derive_init_ex(3)> where a NULL algorithm parameter is
+L<EVP_PKEY_derive_init_ex(3)> where a NULL algorithm parameter is
supplied.
In this case an algorithm implementation is implicitly fetched using
default search criteria and an algorithm name that is consistent with
map { s/^\s+//g; s/\s+$//g; $_ } # Trim prefix and suffix blanks
split(/,/, $tmp);
unless ( grep { $simplename eq $_ } @names ) {
- err($id, "missing $simplename");
+ err($id, "$simplename not in NAME section");
push @names, $simplename;
}
foreach my $name (@names) {
next if $name eq "";
- if ( $name =~ /\s/ ) {
- err($id, "'$name' contains white space")
- }
+ err($id, "'$name' contains white space")
+ if $name =~ /\s/;
my $name_sec = "$name($section)";
if ( !exists $name_map{$name_sec} ) {
$name_map{$name_sec} = $filename;