Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/doc/man3/RSA_public_encrypt.pod
- Timestamp:
- Mar 3, 2022 7:17:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150325
- Location:
- trunk/src/libs/openssl-3.0.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.1
- Property svn:mergeinfo
-
old new 12 12 /vendor/openssl/1.1.1c:131722-131725 13 13 /vendor/openssl/1.1.1k:145841-145843 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.1/doc/man3/RSA_public_encrypt.pod
r91772 r94082 9 9 #include <openssl/rsa.h> 10 10 11 The following functions have been deprecated since OpenSSL 3.0, and can be 12 hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value, 13 see L<openssl_user_macros(7)>: 14 11 15 int RSA_public_encrypt(int flen, const unsigned char *from, 12 16 unsigned char *to, RSA *rsa, int padding); … … 16 20 17 21 =head1 DESCRIPTION 22 23 Both of the functions described on this page are deprecated. 24 Applications should instead use L<EVP_PKEY_encrypt_init_ex(3)>, 25 L<EVP_PKEY_encrypt(3)>, L<EVP_PKEY_decrypt_init_ex(3)> and 26 L<EVP_PKEY_decrypt(3)>. 18 27 19 28 RSA_public_encrypt() encrypts the B<flen> bytes at B<from> (usually a … … 35 44 EME-OAEP as defined in PKCS #1 v2.0 with SHA-1, MGF1 and an empty 36 45 encoding parameter. This mode is recommended for all new applications. 37 38 =item RSA_SSLV23_PADDING39 40 PKCS #1 v1.5 padding with an SSL-specific modification that denotes41 that the server is SSL3 capable.42 46 43 47 =item RSA_NO_PADDING … … 98 102 L<RSA_size(3)> 99 103 104 =head1 HISTORY 105 106 Both of these functions were deprecated in OpenSSL 3.0. 107 100 108 =head1 COPYRIGHT 101 109 102 Copyright 2000-20 19The OpenSSL Project Authors. All Rights Reserved.110 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved. 103 111 104 Licensed under the OpenSSL license(the "License"). You may not use112 Licensed under the Apache License 2.0 (the "License"). You may not use 105 113 this file except in compliance with the License. You can obtain a copy 106 114 in the file LICENSE in the source distribution or at
Note:
See TracChangeset
for help on using the changeset viewer.