Import OpenSSL-0.9.8i.
[dragonfly.git] / crypto / openssl-0.9.7e / doc / crypto / EVP_PKEY_new.pod
blob10687e458db2cf9fa6d66f2c1d61ba4b3363b2af
1 =pod
3 =head1 NAME
5 EVP_PKEY_new, EVP_PKEY_free - private key allocation functions.
7 =head1 SYNOPSIS
9  #include <openssl/evp.h>
11  EVP_PKEY *EVP_PKEY_new(void);
12  void EVP_PKEY_free(EVP_PKEY *key);
15 =head1 DESCRIPTION
17 The EVP_PKEY_new() function allocates an empty B<EVP_PKEY> 
18 structure which is used by OpenSSL to store private keys.
20 EVP_PKEY_free() frees up the private key B<key>.
22 =head1 NOTES
24 The B<EVP_PKEY> structure is used by various OpenSSL functions
25 which require a general private key without reference to any
26 particular algorithm.
28 The structure returned by EVP_PKEY_new() is empty. To add a
29 private key to this empty structure the functions described in
30 L<EVP_PKEY_set1_RSA(3)|EVP_PKEY_set1_RSA(3)> should be used.
32 =head1 RETURN VALUES
34 EVP_PKEY_new() returns either the newly allocated B<EVP_PKEY>
35 structure of B<NULL> if an error occurred.
37 EVP_PKEY_free() does not return a value.
39 =head1 SEE ALSO
41 L<EVP_PKEY_set1_RSA(3)|EVP_PKEY_set1_RSA(3)>
43 =head1 HISTORY
45 TBA
47 =cut