1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | EVP_PKEY_todata, EVP_PKEY_export
|
---|
6 | - functions to return keys as an array of key parameters
|
---|
7 |
|
---|
8 | =head1 SYNOPSIS
|
---|
9 |
|
---|
10 | #include <openssl/evp.h>
|
---|
11 |
|
---|
12 | int EVP_PKEY_todata(const EVP_PKEY *pkey, int selection, OSSL_PARAM **params);
|
---|
13 | int EVP_PKEY_export(const EVP_PKEY *pkey, int selection,
|
---|
14 | OSSL_CALLBACK *export_cb, void *export_cbarg);
|
---|
15 |
|
---|
16 | =head1 DESCRIPTION
|
---|
17 |
|
---|
18 | The functions described here are used to extract B<EVP_PKEY> key values as an
|
---|
19 | array of B<OSSL_PARAM>.
|
---|
20 |
|
---|
21 | EVP_PKEY_todata() extracts values from a key I<pkey> using the I<selection>.
|
---|
22 | I<selection> is described in L<EVP_PKEY_fromdata(3)/Selections>.
|
---|
23 | L<OSSL_PARAM_free(3)> should be used to free the returned parameters in
|
---|
24 | I<*params>.
|
---|
25 |
|
---|
26 | EVP_PKEY_export() is similiar to EVP_PKEY_todata() but uses a callback
|
---|
27 | I<export_cb> that gets passed the value of I<export_cbarg>.
|
---|
28 | See L<openssl-core.h(7)> for more information about the callback. Note that the
|
---|
29 | B<OSSL_PARAM> array that is passed to the callback is not persistent after the
|
---|
30 | callback returns. The user must preserve the items of interest, or use
|
---|
31 | EVP_PKEY_todata() if persistence is required.
|
---|
32 |
|
---|
33 | =head1 NOTES
|
---|
34 |
|
---|
35 | These functions only work with key management methods coming from a provider.
|
---|
36 | This is the mirror function to L<EVP_PKEY_fromdata(3)>.
|
---|
37 |
|
---|
38 | =head1 RETURN VALUES
|
---|
39 |
|
---|
40 | EVP_PKEY_todata() and EVP_PKEY_export() return 1 for success and 0 for failure.
|
---|
41 |
|
---|
42 | =head1 SEE ALSO
|
---|
43 |
|
---|
44 | L<OSSL_PARAM(3)>, L<openssl-core.h(7)>,
|
---|
45 | L<EVP_PKEY_fromdata(3)>,
|
---|
46 | L<EVP_PKEY-RSA(7)>, L<EVP_PKEY-DSA(7)>, L<EVP_PKEY-DH(7)>, L<EVP_PKEY-EC(7)>,
|
---|
47 | L<EVP_PKEY-ED448(7)>, L<EVP_PKEY-X25519(7)>, L<EVP_PKEY-X448(7)>,
|
---|
48 | L<EVP_PKEY-ED25519(7)>
|
---|
49 |
|
---|
50 | =head1 HISTORY
|
---|
51 |
|
---|
52 | These functions were added in OpenSSL 3.0.
|
---|
53 |
|
---|
54 | =head1 COPYRIGHT
|
---|
55 |
|
---|
56 | Copyright 2021 The OpenSSL Project Authors. All Rights Reserved.
|
---|
57 |
|
---|
58 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
59 | this file except in compliance with the License. You can obtain a copy
|
---|
60 | in the file LICENSE in the source distribution or at
|
---|
61 | L<https://www.openssl.org/source/license.html>.
|
---|
62 |
|
---|
63 | =cut
|
---|
64 |
|
---|