diff options
Diffstat (limited to 'src/lib/libcrypto/man/EC_KEY_new.3')
| -rw-r--r-- | src/lib/libcrypto/man/EC_KEY_new.3 | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/src/lib/libcrypto/man/EC_KEY_new.3 b/src/lib/libcrypto/man/EC_KEY_new.3 index c24cb080ef..a2592a20ae 100644 --- a/src/lib/libcrypto/man/EC_KEY_new.3 +++ b/src/lib/libcrypto/man/EC_KEY_new.3 | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | .\" $OpenBSD: EC_KEY_new.3,v 1.21 2025/03/08 16:38:13 tb Exp $ | 1 | .\" $OpenBSD: EC_KEY_new.3,v 1.22 2025/04/25 19:57:12 tb Exp $ |
| 2 | .\" full merge up to: OpenSSL 3aef36ff Jan 5 13:06:03 2016 -0500 | 2 | .\" full merge up to: OpenSSL 3aef36ff Jan 5 13:06:03 2016 -0500 |
| 3 | .\" partial merge up to: OpenSSL e9b77246 Jan 20 19:58:49 2017 +0100 | 3 | .\" partial merge up to: OpenSSL e9b77246 Jan 20 19:58:49 2017 +0100 |
| 4 | .\" | 4 | .\" |
| @@ -49,7 +49,7 @@ | |||
| 49 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 49 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 50 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 50 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
| 51 | .\" | 51 | .\" |
| 52 | .Dd $Mdocdate: March 8 2025 $ | 52 | .Dd $Mdocdate: April 25 2025 $ |
| 53 | .Dt EC_KEY_NEW 3 | 53 | .Dt EC_KEY_NEW 3 |
| 54 | .Os | 54 | .Os |
| 55 | .Sh NAME | 55 | .Sh NAME |
| @@ -234,7 +234,7 @@ and supplying the | |||
| 234 | .Fa nid | 234 | .Fa nid |
| 235 | of the associated curve. | 235 | of the associated curve. |
| 236 | Refer to | 236 | Refer to |
| 237 | .Xr EC_GROUP_new 3 | 237 | .Xr EC_GROUP_new_by_curve_name 3 |
| 238 | for a description of curve names. | 238 | for a description of curve names. |
| 239 | This function simply wraps calls to | 239 | This function simply wraps calls to |
| 240 | .Fn EC_KEY_new | 240 | .Fn EC_KEY_new |
| @@ -357,7 +357,7 @@ The format of the external representation of the public key written by | |||
| 357 | such as whether it is stored in a compressed form or not, | 357 | such as whether it is stored in a compressed form or not, |
| 358 | is described by the point_conversion_form. | 358 | is described by the point_conversion_form. |
| 359 | See | 359 | See |
| 360 | .Xr EC_GROUP_copy 3 | 360 | .Xr EC_POINT_point2oct 3 |
| 361 | for a description of point_conversion_form. | 361 | for a description of point_conversion_form. |
| 362 | .Pp | 362 | .Pp |
| 363 | When reading a private key encoded without an associated public key, | 363 | When reading a private key encoded without an associated public key, |
| @@ -378,7 +378,7 @@ and | |||
| 378 | get and set the point_conversion_form for the | 378 | get and set the point_conversion_form for the |
| 379 | .Fa key . | 379 | .Fa key . |
| 380 | For a description of point_conversion_form refer to | 380 | For a description of point_conversion_form refer to |
| 381 | .Xr EC_GROUP_copy 3 . | 381 | .Xr EC_POINT_point2oct 3 . |
| 382 | .Pp | 382 | .Pp |
| 383 | .Fn EC_KEY_set_flags | 383 | .Fn EC_KEY_set_flags |
| 384 | sets the flags in the | 384 | sets the flags in the |
| @@ -407,7 +407,7 @@ sets the asn1_flag on the underlying | |||
| 407 | .Vt EC_GROUP | 407 | .Vt EC_GROUP |
| 408 | object (if set). | 408 | object (if set). |
| 409 | Refer to | 409 | Refer to |
| 410 | .Xr EC_GROUP_copy 3 | 410 | .Xr EC_GROUP_get_curve_name 3 |
| 411 | for further information on the asn1_flag. | 411 | for further information on the asn1_flag. |
| 412 | .Pp | 412 | .Pp |
| 413 | .Fn EC_KEY_precompute_mult | 413 | .Fn EC_KEY_precompute_mult |
| @@ -488,11 +488,14 @@ returns the point_conversion_form for the | |||
| 488 | .Vt EC_KEY . | 488 | .Vt EC_KEY . |
| 489 | .Sh SEE ALSO | 489 | .Sh SEE ALSO |
| 490 | .Xr d2i_ECPKParameters 3 , | 490 | .Xr d2i_ECPKParameters 3 , |
| 491 | .Xr EC_GROUP_copy 3 , | 491 | .Xr EC_GROUP_check 3 , |
| 492 | .Xr EC_GROUP_new 3 , | 492 | .Xr EC_GROUP_get_curve_name 3 , |
| 493 | .Xr EC_GROUP_new_by_curve_name 3 , | ||
| 494 | .Xr EC_GROUP_new_curve_GFp 3 , | ||
| 493 | .Xr EC_KEY_METHOD_new 3 , | 495 | .Xr EC_KEY_METHOD_new 3 , |
| 494 | .Xr EC_POINT_add 3 , | 496 | .Xr EC_POINT_add 3 , |
| 495 | .Xr EC_POINT_new 3 , | 497 | .Xr EC_POINT_get_affine_coordinates 3 , |
| 498 | .Xr EC_POINT_point2oct 3 , | ||
| 496 | .Xr ECDH_compute_key 3 , | 499 | .Xr ECDH_compute_key 3 , |
| 497 | .Xr ECDSA_SIG_new 3 , | 500 | .Xr ECDSA_SIG_new 3 , |
| 498 | .Xr EVP_PKEY_set1_EC_KEY 3 | 501 | .Xr EVP_PKEY_set1_EC_KEY 3 |
