Import OpenSSL 1.1.0f
This commit is contained in:
@@ -2,8 +2,9 @@
|
||||
|
||||
=head1 NAME
|
||||
|
||||
d2i_Private_key, d2i_AutoPrivateKey, i2d_PrivateKey - decode and encode
|
||||
functions for reading and saving EVP_PKEY structures.
|
||||
d2i_PrivateKey, d2i_AutoPrivateKey, i2d_PrivateKey,
|
||||
d2i_PrivateKey_bio, d2i_PrivateKey_fp
|
||||
- decode and encode functions for reading and saving EVP_PKEY structures
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
@@ -15,6 +16,9 @@ functions for reading and saving EVP_PKEY structures.
|
||||
long length);
|
||||
int i2d_PrivateKey(EVP_PKEY *a, unsigned char **pp);
|
||||
|
||||
EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
|
||||
EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a)
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
d2i_PrivateKey() decodes a private key using algorithm B<type>. It attempts to
|
||||
@@ -28,8 +32,7 @@ automatically detect the private key format.
|
||||
i2d_PrivateKey() encodes B<key>. It uses a key specific format or, if none is
|
||||
defined for that key type, PKCS#8 unencrypted PrivateKeyInfo format.
|
||||
|
||||
These functions are similar to the d2i_X509() functions, and you should refer to
|
||||
that page for a detailed description (see L<d2i_X509(3)>).
|
||||
These functions are similar to the d2i_X509() functions; see L<d2i_X509(3)>.
|
||||
|
||||
=head1 NOTES
|
||||
|
||||
@@ -53,7 +56,16 @@ L<ERR_get_error(3)>.
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
L<crypto(3)>,
|
||||
L<d2i_PKCS8PrivateKey(3)>
|
||||
L<crypto(7)>,
|
||||
L<d2i_PKCS8PrivateKey_bio(3)>
|
||||
|
||||
=head1 COPYRIGHT
|
||||
|
||||
Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
|
||||
|
||||
Licensed under the OpenSSL license (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<https://www.openssl.org/source/license.html>.
|
||||
|
||||
=cut
|
||||
|
||||
Reference in New Issue
Block a user