=pod =head1 NAME OSSL_PARAM_dup, OSSL_PARAM_merge, OSSL_PARAM_free - OSSL_PARAM array copy functions =head1 SYNOPSIS #include OSSL_PARAM *OSSL_PARAM_dup(const OSSL_PARAM *params); OSSL_PARAM *OSSL_PARAM_merge(const OSSL_PARAM *params, const OSSL_PARAM *params1); void OSSL_PARAM_free(OSSL_PARAM *params); =head1 DESCRIPTION Algorithm parameters can be exported/imported from/to providers using arrays of B. The following utility functions allow the parameters to be duplicated and merged with other B to assist in this process. OSSL_PARAM_dup() duplicates the parameter array I. This function does a deep copy of the data. OSSL_PARAM_merge() merges the parameter arrays I and I into a new parameter array. If I and I contain values with the same 'key' then the value from I will replace the I value. This function does a shallow copy of the parameters. Either I or I may be NULL. The behaviour of the merge is unpredictable if I and I contain the same key, and there are multiple entries within either array that have the same key. OSSL_PARAM_free() frees the parameter array I that was created using OSSL_PARAM_dup(), OSSL_PARAM_merge() or OSSL_PARAM_BLD_to_param(). =head1 RETURN VALUES The functions OSSL_PARAM_dup() and OSSL_PARAM_merge() return a newly allocated B array, or NULL if there was an error. If both parameters are NULL then NULL is returned. =head1 SEE ALSO L, L =head1 HISTORY The functions were added in OpenSSL 3.0. =head1 COPYRIGHT Copyright 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