diff options
author | tb <> | 2023-07-21 04:35:36 +0000 |
---|---|---|
committer | tb <> | 2023-07-21 04:35:36 +0000 |
commit | 36ca673eded17b6bded129be837b73096fc6e911 (patch) | |
tree | a00ff1a167c365d8d5123ab1d06d5e6eb19302cb /src/lib | |
parent | 9f6ab08437109c9059d47ca67398cdb17ca76be9 (diff) | |
download | openbsd-36ca673eded17b6bded129be837b73096fc6e911.tar.gz openbsd-36ca673eded17b6bded129be837b73096fc6e911.tar.bz2 openbsd-36ca673eded17b6bded129be837b73096fc6e911.zip |
Document ENGINE_get_default_EC
ENGINE_get_default_{ECDH,ECDSA} will go away and won't come back. Replace
their documentation with the missing ENGINE_get_defaulT_EC. In the unlikely
event that we will need to bring back ENGINE after the next bump, this
manual will not be outdated and incomplete.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/man/ENGINE_get_default_RSA.3 | 25 |
1 files changed, 8 insertions, 17 deletions
diff --git a/src/lib/libcrypto/man/ENGINE_get_default_RSA.3 b/src/lib/libcrypto/man/ENGINE_get_default_RSA.3 index ae63984800..348f13670f 100644 --- a/src/lib/libcrypto/man/ENGINE_get_default_RSA.3 +++ b/src/lib/libcrypto/man/ENGINE_get_default_RSA.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: ENGINE_get_default_RSA.3,v 1.3 2023/07/20 09:28:30 tb Exp $ | 1 | .\" $OpenBSD: ENGINE_get_default_RSA.3,v 1.4 2023/07/21 04:35:36 tb Exp $ |
2 | .\" content checked up to: | 2 | .\" content checked up to: |
3 | .\" OpenSSL ENGINE_add 1f13ad31 Dec 25 17:50:39 2017 +0800 | 3 | .\" OpenSSL ENGINE_add 1f13ad31 Dec 25 17:50:39 2017 +0800 |
4 | .\" | 4 | .\" |
@@ -16,14 +16,13 @@ | |||
16 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 16 | .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
17 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 17 | .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
18 | .\" | 18 | .\" |
19 | .Dd $Mdocdate: July 20 2023 $ | 19 | .Dd $Mdocdate: July 21 2023 $ |
20 | .Dt ENGINE_GET_DEFAULT_RSA 3 | 20 | .Dt ENGINE_GET_DEFAULT_RSA 3 |
21 | .Os | 21 | .Os |
22 | .Sh NAME | 22 | .Sh NAME |
23 | .Nm ENGINE_get_default_RSA , | 23 | .Nm ENGINE_get_default_RSA , |
24 | .Nm ENGINE_get_default_DSA , | 24 | .Nm ENGINE_get_default_DSA , |
25 | .Nm ENGINE_get_default_ECDH , | 25 | .Nm ENGINE_get_default_EC , |
26 | .Nm ENGINE_get_default_ECDSA , | ||
27 | .Nm ENGINE_get_default_DH , | 26 | .Nm ENGINE_get_default_DH , |
28 | .Nm ENGINE_get_default_RAND , | 27 | .Nm ENGINE_get_default_RAND , |
29 | .Nm ENGINE_get_cipher_engine , | 28 | .Nm ENGINE_get_cipher_engine , |
@@ -38,9 +37,7 @@ | |||
38 | .Ft ENGINE * | 37 | .Ft ENGINE * |
39 | .Fn ENGINE_get_default_DSA void | 38 | .Fn ENGINE_get_default_DSA void |
40 | .Ft ENGINE * | 39 | .Ft ENGINE * |
41 | .Fn ENGINE_get_default_ECDH void | 40 | .Fn ENGINE_get_default_EC void |
42 | .Ft ENGINE * | ||
43 | .Fn ENGINE_get_default_ECDSA void | ||
44 | .Ft ENGINE * | 41 | .Ft ENGINE * |
45 | .Fn ENGINE_get_default_DH void | 42 | .Fn ENGINE_get_default_DH void |
46 | .Ft ENGINE * | 43 | .Ft ENGINE * |
@@ -104,11 +101,7 @@ Application programs rarely need to call these functions because | |||
104 | they are called automatically when needed, in particular from | 101 | they are called automatically when needed, in particular from |
105 | .Xr RSA_new 3 , | 102 | .Xr RSA_new 3 , |
106 | .Xr DSA_new 3 , | 103 | .Xr DSA_new 3 , |
107 | .Fn ECDH_set_method , | 104 | .Xr EC_KEY_new 3 , |
108 | .Fn ECDH_compute_key , | ||
109 | .Xr ECDSA_set_method 3 , | ||
110 | .Xr ECDSA_do_sign 3 , | ||
111 | .Xr ECDSA_do_verify 3 , | ||
112 | .Xr DH_new 3 , | 105 | .Xr DH_new 3 , |
113 | .Xr EVP_CipherInit_ex 3 , | 106 | .Xr EVP_CipherInit_ex 3 , |
114 | and | 107 | and |
@@ -153,8 +146,6 @@ and | |||
153 | first appeared in OpenSSL 0.9.7 and have been available since | 146 | first appeared in OpenSSL 0.9.7 and have been available since |
154 | .Ox 3.2 . | 147 | .Ox 3.2 . |
155 | .Pp | 148 | .Pp |
156 | .Fn ENGINE_get_default_ECDH | 149 | .Fn ENGINE_get_default_EC |
157 | and | 150 | first appeared in OpenSSL 1.1.0 and has been available since |
158 | .Fn ENGINE_get_default_ECDSA | 151 | .Ox 6.5 . |
159 | first appeared in OpenSSL 0.9.8 and have been available since | ||
160 | .Ox 4.5 . | ||