Lines Matching refs:OSSL_PARAM

15 - functions to assist in the creation of OSSL_PARAM arrays
26 OSSL_PARAM *OSSL_PARAM_BLD_to_param(OSSL_PARAM_BLD *bld);
48 A collection of utility functions that simplify the creation of OSSL_PARAM
58 I<bld> into an allocated OSSL_PARAM array.
59 The OSSL_PARAM array and all associated storage must be freed by calling
72 OSSL_PARAM objects of the specified size and correct type for the I<val>
76 OSSL_PARAM_BLD_push_BN() is a function that will create an OSSL_PARAM object
78 If I<bn> is marked as being securely allocated, its OSSL_PARAM representation
83 OSSL_PARAM_BLD_push_BN_pad() is a function that will create an OSSL_PARAM object
87 If I<bn> is marked as being securely allocated, its OSSL_PARAM representation
92 OSSL_PARAM_BLD_push_utf8_string() is a function that will create an OSSL_PARAM
99 OSSL_PARAM_BLD_push_octet_string() is a function that will create an OSSL_PARAM
104 OSSL_PARAM_BLD_push_utf8_ptr() is a function that will create an OSSL_PARAM
109 scope until the OSSL_PARAM array is freed.
111 OSSL_PARAM_BLD_push_octet_ptr() is a function that will create an OSSL_PARAM
114 scope until the OSSL_PARAM array is freed.
121 OSSL_PARAM_BLD_to_param() returns the allocated OSSL_PARAM array, or NULL
129 Both examples creating an OSSL_PARAM array that contains an RSA key.
139 This example shows how to create an OSSL_PARAM array that contains an RSA
143 OSSL_PARAM *params = NULL;
160 This example shows how to create an OSSL_PARAM array that contains an RSA
164 OSSL_PARAM *params = NULL;
178 L<OSSL_PARAM_int(3)>, L<OSSL_PARAM(3)>, L<OSSL_PARAM_free(3)>