3fb741622d1d62f5e0f1f6e57c84385bf94306aa
[openssl.git] / doc / man3 / EVP_SIGNATURE_free.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_SIGNATURE_fetch, EVP_SIGNATURE_free, EVP_SIGNATURE_up_ref,
6 EVP_SIGNATURE_is_a, EVP_SIGNATURE_provider, EVP_SIGNATURE_do_all_provided
7 - Functions to manage EVP_SIGNATURE algorithm objects
8
9 =head1 SYNOPSIS
10
11  #include <openssl/evp.h>
12
13  EVP_SIGNATURE *EVP_SIGNATURE_fetch(OPENSSL_CTX *ctx, const char *algorithm,
14                                     const char *properties);
15  void EVP_SIGNATURE_free(EVP_SIGNATURE *signature);
16  int EVP_SIGNATURE_up_ref(EVP_SIGNATURE *signature);
17  int EVP_SIGNATURE_is_a(const EVP_SIGNATURE *signature, const char *name);
18  OSSL_PROVIDER *EVP_SIGNATURE_provider(const EVP_SIGNATURE *signature);
19  void EVP_SIGNATURE_do_all_provided(OPENSSL_CTX *libctx,
20                                     void (*fn)(EVP_SIGNATURE *signature,
21                                                void *arg),
22                                     void *arg);
23
24 =head1 DESCRIPTION
25
26 EVP_SIGNATURE_fetch() fetches the implementation for the given
27 B<algorithm> from any provider offering it, within the criteria given
28 by the B<properties>.
29 The algorithm will be one offering functions for performing signature related
30 tasks such as signing and verifying.
31 See L<provider(7)/Fetching algorithms> for further information.
32
33 The returned value must eventually be freed with EVP_SIGNATURE_free().
34
35 EVP_SIGNATURE_free() decrements the reference count for the B<EVP_SIGNATURE>
36 structure. Typically this structure will have been obtained from an earlier call
37 to EVP_SIGNATURE_fetch(). If the reference count drops to 0 then the
38 structure is freed.
39
40 EVP_SIGNATURE_up_ref() increments the reference count for an B<EVP_SIGNATURE>
41 structure.
42
43 EVP_SIGNATURE_is_a() returns 1 if I<signature> is an implementation of an
44 algorithm that's identifiable with I<name>, otherwise 0.
45
46 EVP_SIGNATURE_provider() returns the provider that I<signature> was fetched from.
47
48 EVP_SIGNATURE_do_all_provided() traverses all SIGNATURE implemented by all
49 activated roviders in the given library context I<libctx>, and for each of the
50 implementations, calls the given function I<fn> with the implementation method
51 and the given I<arg> as argument.
52
53 =head1 RETURN VALUES
54
55 EVP_SIGNATURE_fetch() returns a pointer to an B<EVP_SIGNATURE> for success
56 or B<NULL> for failure.
57
58 EVP_SIGNATURE_up_ref() returns 1 for success or 0 otherwise.
59
60 =head1 SEE ALSO
61
62 L<provider(7)/Fetching algorithms>, L<OSSL_PROVIDER(3)>
63
64 =head1 HISTORY
65
66 The functions described here were added in OpenSSL 3.0.
67
68 =head1 COPYRIGHT
69
70 Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
71
72 Licensed under the Apache License 2.0 (the "License").  You may not use
73 this file except in compliance with the License.  You can obtain a copy
74 in the file LICENSE in the source distribution or at
75 L<https://www.openssl.org/source/license.html>.
76
77 =cut