]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/EVP_SIGNATURE_free.pod
Don't hold a lock when calling a callback in ossl_namemap_doall_names
[thirdparty/openssl.git] / doc / man3 / EVP_SIGNATURE_free.pod
CommitLineData
11031468
MC
1=pod
2
3=head1 NAME
4
5EVP_SIGNATURE_fetch, EVP_SIGNATURE_free, EVP_SIGNATURE_up_ref,
506cb0f6 6EVP_SIGNATURE_number, EVP_SIGNATURE_is_a, EVP_SIGNATURE_provider,
e3efe7a5
SL
7EVP_SIGNATURE_do_all_provided, EVP_SIGNATURE_names_do_all,
8EVP_SIGNATURE_gettable_ctx_params, EVP_SIGNATURE_settable_ctx_params
11031468
MC
9- Functions to manage EVP_SIGNATURE algorithm objects
10
11=head1 SYNOPSIS
12
13 #include <openssl/evp.h>
14
b4250010 15 EVP_SIGNATURE *EVP_SIGNATURE_fetch(OSSL_LIB_CTX *ctx, const char *algorithm,
11031468
MC
16 const char *properties);
17 void EVP_SIGNATURE_free(EVP_SIGNATURE *signature);
18 int EVP_SIGNATURE_up_ref(EVP_SIGNATURE *signature);
506cb0f6 19 int EVP_SIGNATURE_number(const EVP_SIGNATURE *signature);
251e610c 20 int EVP_SIGNATURE_is_a(const EVP_SIGNATURE *signature, const char *name);
11031468 21 OSSL_PROVIDER *EVP_SIGNATURE_provider(const EVP_SIGNATURE *signature);
b4250010 22 void EVP_SIGNATURE_do_all_provided(OSSL_LIB_CTX *libctx,
251e610c
RL
23 void (*fn)(EVP_SIGNATURE *signature,
24 void *arg),
25 void *arg);
d84f5515
MC
26 int EVP_SIGNATURE_names_do_all(const EVP_SIGNATURE *signature,
27 void (*fn)(const char *name, void *data),
28 void *data);
e3efe7a5
SL
29 const OSSL_PARAM *EVP_SIGNATURE_gettable_ctx_params(const EVP_SIGNATURE *sig);
30 const OSSL_PARAM *EVP_SIGNATURE_settable_ctx_params(const EVP_SIGNATURE *sig);
11031468
MC
31
32=head1 DESCRIPTION
33
34EVP_SIGNATURE_fetch() fetches the implementation for the given
35B<algorithm> from any provider offering it, within the criteria given
36by the B<properties>.
37The algorithm will be one offering functions for performing signature related
38tasks such as signing and verifying.
39See L<provider(7)/Fetching algorithms> for further information.
40
41The returned value must eventually be freed with EVP_SIGNATURE_free().
42
43EVP_SIGNATURE_free() decrements the reference count for the B<EVP_SIGNATURE>
44structure. Typically this structure will have been obtained from an earlier call
45to EVP_SIGNATURE_fetch(). If the reference count drops to 0 then the
46structure is freed.
47
48EVP_SIGNATURE_up_ref() increments the reference count for an B<EVP_SIGNATURE>
49structure.
50
251e610c
RL
51EVP_SIGNATURE_is_a() returns 1 if I<signature> is an implementation of an
52algorithm that's identifiable with I<name>, otherwise 0.
53
11031468
MC
54EVP_SIGNATURE_provider() returns the provider that I<signature> was fetched from.
55
251e610c
RL
56EVP_SIGNATURE_do_all_provided() traverses all SIGNATURE implemented by all
57activated roviders in the given library context I<libctx>, and for each of the
58implementations, calls the given function I<fn> with the implementation method
59and the given I<arg> as argument.
60
506cb0f6
RL
61EVP_SIGNATURE_number() returns the internal dynamic number assigned to
62I<signature>.
63
f651c727
RL
64EVP_SIGNATURE_names_do_all() traverses all names for I<signature>, and calls
65I<fn> with each name and I<data>.
66
e3efe7a5
SL
67EVP_SIGNATURE_gettable_ctx_params() and EVP_SIGNATURE_settable_ctx_params()
68return a constant B<OSSL_PARAM> array that describes the names and types of key
69parameters that can be retrieved or set by a signature algorithm using
70L<EVP_PKEY_CTX_get_params(3)> and L<EVP_PKEY_CTX_set_params(3)>.
71
11031468
MC
72=head1 RETURN VALUES
73
74EVP_SIGNATURE_fetch() returns a pointer to an B<EVP_SIGNATURE> for success
75or B<NULL> for failure.
76
77EVP_SIGNATURE_up_ref() returns 1 for success or 0 otherwise.
78
d84f5515
MC
79EVP_SIGNATURE_names_do_all() returns 1 if the callback was called for all names.
80A return value of 0 means that the callback was not called for any names.
81
e3efe7a5
SL
82EVP_SIGNATURE_gettable_ctx_params() and EVP_SIGNATURE_settable_ctx_params()
83return a constant B<OSSL_PARAM> array or NULL on error.
84
11031468
MC
85=head1 SEE ALSO
86
87L<provider(7)/Fetching algorithms>, L<OSSL_PROVIDER(3)>
88
89=head1 HISTORY
90
91The functions described here were added in OpenSSL 3.0.
92
93=head1 COPYRIGHT
94
e3efe7a5 95Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
11031468
MC
96
97Licensed under the Apache License 2.0 (the "License"). You may not use
98this file except in compliance with the License. You can obtain a copy
99in the file LICENSE in the source distribution or at
100L<https://www.openssl.org/source/license.html>.
101
102=cut