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