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