Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/doc/man3/RSA_check_key.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_check_key.pod
r91772 r94082 9 9 #include <openssl/rsa.h> 10 10 11 int RSA_check_key_ex(RSA *rsa, BN_GENCB *cb); 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)>: 12 14 13 int RSA_check_key(RSA *rsa); 15 int RSA_check_key_ex(const RSA *rsa, BN_GENCB *cb); 16 17 int RSA_check_key(const RSA *rsa); 14 18 15 19 =head1 DESCRIPTION 20 21 Both of the functions described on this page are deprecated. 22 Applications should instead use L<EVP_PKEY_public_check(3)>, 23 L<EVP_PKEY_private_check(3)> and L<EVP_PKEY_pairwise_check(3)>. 16 24 17 25 RSA_check_key_ex() function validates RSA keys. … … 71 79 =head1 HISTORY 72 80 81 All of these functions were deprecated in OpenSSL 3.0. 82 73 83 RSA_check_key_ex() appeared after OpenSSL 1.0.2. 74 84 75 85 =head1 COPYRIGHT 76 86 77 Copyright 2000-20 18The OpenSSL Project Authors. All Rights Reserved.87 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved. 78 88 79 Licensed under the OpenSSL license(the "License"). You may not use89 Licensed under the Apache License 2.0 (the "License"). You may not use 80 90 this file except in compliance with the License. You can obtain a copy 81 91 in the file LICENSE in the source distribution or at
Note:
See TracChangeset
for help on using the changeset viewer.