summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/man/SXNET_new.3
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/man/SXNET_new.3')
-rw-r--r--src/lib/libcrypto/man/SXNET_new.391
1 files changed, 91 insertions, 0 deletions
diff --git a/src/lib/libcrypto/man/SXNET_new.3 b/src/lib/libcrypto/man/SXNET_new.3
new file mode 100644
index 0000000000..1484970113
--- /dev/null
+++ b/src/lib/libcrypto/man/SXNET_new.3
@@ -0,0 +1,91 @@
1.\" $OpenBSD: SXNET_new.3,v 1.1 2016/12/24 01:00:48 schwarze Exp $
2.\"
3.\" Copyright (c) 2016 Ingo Schwarze <schwarze@openbsd.org>
4.\"
5.\" Permission to use, copy, modify, and distribute this software for any
6.\" purpose with or without fee is hereby granted, provided that the above
7.\" copyright notice and this permission notice appear in all copies.
8.\"
9.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16.\"
17.Dd $Mdocdate: December 24 2016 $
18.Dt SXNET_NEW 3
19.Os
20.Sh NAME
21.Nm SXNET_new ,
22.Nm SXNET_free ,
23.Nm SXNETID_new ,
24.Nm SXNETID_free
25.Nd Thawte strong extranet X.509 extension
26.Sh SYNOPSIS
27.In openssl/x509v3.h
28.Ft SXNET *
29.Fn SXNET_new void
30.Ft void
31.Fn SXNET_free "SXNET *sxnet"
32.Ft SXNETID *
33.Fn SXNETID_new void
34.Ft void
35.Fn SXNETID_free "SXNETID *sxnetid"
36.Sh DESCRIPTION
37.Fn SXNET_new
38allocates and initializes an empty
39.Vt SXNET
40object representing a non-standard proprietary Thawte strong extranet
41X.509 extension.
42.Fn SXNET_free
43frees
44.Fa sxnet .
45.Pp
46.Fn SXNETID_new
47allocates and initializes an empty
48.Vt SXNETID
49object.
50It is used inside
51.Vt SXNET .
52.Fn SXNETID_free
53frees
54.Fa sxnetid .
55.Sh RETURN VALUES
56.Fn SXNET_new
57and
58.Fn SXNETID_new
59return the new
60.Vt SXNET
61or
62.Vt SXNETID
63object, respectively, or
64.Dv NULL
65if an error occurs.
66.Sh SEE ALSO
67.Xr X509_EXTENSION_new 3 ,
68.Xr X509_new 3
69.Rs
70.%A M. Shuttleworth
71.%R The Strong Extranet: real-world personal certification
72.%Q Thawte Consulting
73.%C South Africa
74.%D 1998
75.Re
76.Sh BUGS
77This manual page does not explain what the extension actually does
78because no authoritative information was found online so far.
79.Pp
80The only hint was found in an ancient white paper "Securing IBM
81Applications with Public Key Infrastructure" on the IBM website,
82dated June 13, 2001: "Thawte also has a technology called Strong
83Extranet that allows institutions to encode customer information
84in the extensions to their customer's certificates.
85Because multiple institutions can add information, the user needs
86only one certificate, making renewal and revocation simpler, although
87the issue of modifying an extension to an existing certificate is
88not addressed."
89.Pp
90It is unclear whether that explanation is accurate, but in any case,
91it is not very specific.