summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/EC_POINT_new.3
diff options
context:
space:
mode:
authorschwarze <>2025-06-13 18:34:00 +0000
committerschwarze <>2025-06-13 18:34:00 +0000
commit733099db79c3c2668c3ba1571684bd82b40ea7b0 (patch)
treeb89fb48431941cd306c4b2f6910aba884d76e554 /src/lib/libcrypto/man/EC_POINT_new.3
parent88ea7e05d0419eb2d0343eddafbd339aceed1d68 (diff)
downloadopenbsd-733099db79c3c2668c3ba1571684bd82b40ea7b0.tar.gz
openbsd-733099db79c3c2668c3ba1571684bd82b40ea7b0.tar.bz2
openbsd-733099db79c3c2668c3ba1571684bd82b40ea7b0.zip
The mdoc(7) .Ft macro does not need quoting of its arguments, but about
10% of our manual pages using this macro employed useless quoting anyway. Remove these quotes such that they do not incite fear, uncertainty, and doubt in developers who happen to look at these pages. jmc@ and tb@ agree with the direction.
Diffstat (limited to 'src/lib/libcrypto/man/EC_POINT_new.3')
-rw-r--r--src/lib/libcrypto/man/EC_POINT_new.314
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libcrypto/man/EC_POINT_new.3 b/src/lib/libcrypto/man/EC_POINT_new.3
index be88db0ef9..0a797f8bc9 100644
--- a/src/lib/libcrypto/man/EC_POINT_new.3
+++ b/src/lib/libcrypto/man/EC_POINT_new.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: EC_POINT_new.3,v 1.20 2025/06/08 22:40:29 schwarze Exp $ 1.\" $OpenBSD: EC_POINT_new.3,v 1.21 2025/06/13 18:34:00 schwarze Exp $
2.\" 2.\"
3.\" Copyright (c) 2025 Theo Buehler <tb@openbsd.org> 3.\" Copyright (c) 2025 Theo Buehler <tb@openbsd.org>
4.\" 4.\"
@@ -14,7 +14,7 @@
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\" 16.\"
17.Dd $Mdocdate: June 8 2025 $ 17.Dd $Mdocdate: June 13 2025 $
18.Dt EC_POINT_NEW 3 18.Dt EC_POINT_NEW 3
19.Os 19.Os
20.Sh NAME 20.Sh NAME
@@ -28,24 +28,24 @@
28.Lb libcrypto 28.Lb libcrypto
29.In openssl/ec.h 29.In openssl/ec.h
30.Pp 30.Pp
31.Ft "EC_POINT *" 31.Ft EC_POINT *
32.Fo EC_POINT_new 32.Fo EC_POINT_new
33.Fa "const EC_GROUP *group" 33.Fa "const EC_GROUP *group"
34.Fc 34.Fc
35.Ft "void" 35.Ft void
36.Fo EC_POINT_free 36.Fo EC_POINT_free
37.Fa "EC_POINT *point" 37.Fa "EC_POINT *point"
38.Fc 38.Fc
39.Ft "void" 39.Ft void
40.Fo EC_POINT_clear_free 40.Fo EC_POINT_clear_free
41.Fa "EC_POINT *point" 41.Fa "EC_POINT *point"
42.Fc 42.Fc
43.Ft "int" 43.Ft int
44.Fo EC_POINT_copy 44.Fo EC_POINT_copy
45.Fa "EC_POINT *dst" 45.Fa "EC_POINT *dst"
46.Fa "const EC_POINT *src" 46.Fa "const EC_POINT *src"
47.Fc 47.Fc
48.Ft "EC_POINT *" 48.Ft EC_POINT *
49.Fo EC_POINT_dup 49.Fo EC_POINT_dup
50.Fa "const EC_POINT *point" 50.Fa "const EC_POINT *point"
51.Fa "const EC_GROUP *group" 51.Fa "const EC_GROUP *group"