skip book previous and next navigation links
go up to top of book: HP Open Source Security for OpenVMS Volume 2:... HP Open Source Security for OpenVMS Volume 2:...
go to beginning of reference: CRYPTO Application Programming Interface (API)... CRYPTO Application Programming Interface (API)...
go to previous page: EVP_OpenInit EVP_OpenInit
go to next page: EVP_PKEY_set1_RSAEVP_PKEY_set1_RSA
end of book navigation links


EVP_PKEY_new
Description
Return Values
History
 Notes
See Also

NAME

EVP_PKEY_new, EVP_PKEY_free - private key allocation functions.

Synopsis  

#include <openssl/evp.h>
EVP_PKEY *EVP_PKEY_new(void);
void EVP_PKEY_free(EVP_PKEY *key);


return to top DESCRIPTION  

The EVP_PKEY_new() function allocates an empty EVP_PKEY structure which is used by OpenSSL to store private keys.

EVP_PKEY_free() frees up the private key key.


return to top NOTES  

The EVP_PKEY structure is used by various OpenSSL functions which require a general private key without reference to any particular algorithm.

The structure returned by EVP_PKEY_new() is empty. To add a private key to this empty structure the functions described in EVP_PKEY_set1_RSA(3) should be used.


return to top RETURN VALUES  

EVP_PKEY_new() returns either the newly allocated EVP_PKEY structure of NULL if an error occurred.

EVP_PKEY_free() does not return a value.


return to top SEE ALSO  

EVP_PKEY_set1_RSA(3)


return to top HISTORY  

None.
go to previous page: EVP_OpenInit EVP_OpenInit
go to next page: EVP_PKEY_set1_RSAEVP_PKEY_set1_RSA