=pod =head1 NAME evp_keymgmt_util_export, evp_keymgmt_util_export_to_provider, evp_keymgmt_util_find_operation_cache, evp_keymgmt_util_clear_operation_cache, evp_keymgmt_util_cache_keydata, evp_keymgmt_util_cache_keyinfo, evp_keymgmt_util_fromdata, OP_CACHE_ELEM - internal KEYMGMT utility functions =head1 SYNOPSIS #include "crypto/evp.h" typedef struct OP_CACHE_ELEM; int evp_keymgmt_util_export(const EVP_PKEY *pk, int selection, OSSL_CALLBACK *export_cb, void *export_cbarg); void *evp_keymgmt_util_export_to_provider(EVP_PKEY *pk, EVP_KEYMGMT *keymgmt, int selection); OP_CACHE_ELEM *evp_keymgmt_util_find_operation_cache(EVP_PKEY *pk, EVP_KEYMGMT *keymgmt, int selection); int evp_keymgmt_util_clear_operation_cache(EVP_PKEY *pk, int locking); int evp_keymgmt_util_cache_keydata(EVP_PKEY *pk, EVP_KEYMGMT *keymgmt, void *keydata, int selection); void evp_keymgmt_util_cache_keyinfo(EVP_PKEY *pk); void *evp_keymgmt_util_fromdata(EVP_PKEY *target, EVP_KEYMGMT *keymgmt, int selection, const OSSL_PARAM params[]); =head1 DESCRIPTION evp_keymgmt_util_export() calls L with the I and I from I. This is used as a helper for L. evp_keymgmt_util_export_to_provider() exports cached key material (provider side key material) from the given key I to a provider via a B interface, if this hasn't already been done. It maintains a cache of provider key references in I to keep track of all provider side keys. To export a legacy key, use L instead, as this function ignores any legacy key data. evp_keymgmt_util_find_operation_cache() finds I in I's cache of provided keys for operations. It should only be called while holding I's lock (read or write). evp_keymgmt_util_clear_operation_cache() can be used to explicitly clear the cache of operation key references. If I is set to 1 then then I's lock will be obtained while doing the clear. Otherwise it will be assumed that the lock has already been obtained or is not required. evp_keymgmt_util_cache_keydata() can be used to add a provider key object to a B. evp_keymgmt_util_cache_keyinfo() can be used to get all kinds of information from the provvider "origin" and save it in I's information cache. evp_keymgmt_util_fromdata() can be used to add key object data to a given key I via a B interface. This is used as a helper for L. In all functions that take a I argument, the selection is used to constraint the information requested on export. It is also used in the cache so that key data is guaranteed to contain all the information requested in the selection. =head1 RETURN VALUES evp_keymgmt_export_to_provider() and evp_keymgmt_util_fromdata() return a pointer to the appropriate provider side key (created or found again), or NULL on error. evp_keymgmt_util_find_operation_cache() returns a pointer to the operation cache slot. If I is NULL, or if there is no slot with a match for I, NULL is returned. evp_keymgmt_util_cache_keydata() and evp_keymgmt_util_clear_operation_cache() return 1 on success or 0 otherwise. =head1 NOTES "Legacy key" is the term used for any key that has been assigned to an B with EVP_PKEY_assign_RSA() and similar functions. =head1 SEE ALSO L, L =head1 COPYRIGHT Copyright 2019-2021 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