diff options
author | Shane Lontis <shane.lontis@oracle.com> | 2021-04-08 12:05:14 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2021-04-15 18:42:04 +0200 |
commit | a732a4c329144f0b4c60372d9b7106c6b88ddd9f (patch) | |
tree | f5dd1f0e6d8ebfb89a3ec536b94a8b1297148d6a /doc/man7/evp.pod | |
parent | Add OID for mdc2WithRSASignature and remove related TODO 3.0 (diff) | |
download | openssl-a732a4c329144f0b4c60372d9b7106c6b88ddd9f.tar.xz openssl-a732a4c329144f0b4c60372d9b7106c6b88ddd9f.zip |
Add EVP_PKEY_todata() and EVP_PKEY_export() functions.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14800)
Diffstat (limited to 'doc/man7/evp.pod')
-rw-r--r-- | doc/man7/evp.pod | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/man7/evp.pod b/doc/man7/evp.pod index 74fc975ce1..307008f7ba 100644 --- a/doc/man7/evp.pod +++ b/doc/man7/evp.pod @@ -32,7 +32,8 @@ with a private key of a particular algorithm by using the functions described on the L<EVP_PKEY_fromdata(3)> page, or new keys can be generated using L<EVP_PKEY_keygen(3)>. EVP_PKEYs can be compared using L<EVP_PKEY_cmp(3)>, or printed using -L<EVP_PKEY_print_private(3)>. +L<EVP_PKEY_print_private(3)>. L<EVP_PKEY_todata(3)> can be used to convert a +key back into an L<OSSL_PARAM(3)> array. The EVP_PKEY functions support the full range of asymmetric algorithm operations: @@ -91,6 +92,7 @@ L<EVP_VerifyInit(3)>, L<EVP_EncodeInit(3)>, L<EVP_PKEY_new(3)>, L<EVP_PKEY_fromdata(3)>, +L<EVP_PKEY_todata(3)>, L<EVP_PKEY_keygen(3)>, L<EVP_PKEY_print_private(3)>, L<EVP_PKEY_decrypt(3)>, |