=pod =head1 NAME EVP_PKEY_todata, EVP_PKEY_export - functions to return keys as an array of key parameters =head1 SYNOPSIS #include int EVP_PKEY_todata(const EVP_PKEY *pkey, int selection, OSSL_PARAM **params); int EVP_PKEY_export(const EVP_PKEY *pkey, int selection, OSSL_CALLBACK *export_cb, void *export_cbarg); =head1 DESCRIPTION The functions described here are used to extract B key values as an array of L. EVP_PKEY_todata() extracts values from a key I using the I. I is described in L. L should be used to free the returned parameters in I<*params>. EVP_PKEY_export() is similar to EVP_PKEY_todata() but uses a callback I that gets passed the value of I. See L for more information about the callback. Note that the L array that is passed to the callback is not persistent after the callback returns. The user must preserve the items of interest, or use EVP_PKEY_todata() if persistence is required. =head1 NOTES These functions only work with key management methods coming from a provider. This is the mirror function to L. =head1 RETURN VALUES EVP_PKEY_todata() and EVP_PKEY_export() return 1 for success and 0 for failure. =head1 SEE ALSO L, L, L, L, L, L, L, L, L, L, L =head1 HISTORY These functions were added in OpenSSL 3.0. =head1 COPYRIGHT Copyright 2021-2023 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut