File: sslcert2.xml

package info (click to toggle)
neon27 0.36.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,836 kB
  • sloc: ansic: 27,754; xml: 4,634; makefile: 629; sh: 328
file content (127 lines) | stat: -rw-r--r-- 5,036 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<refentry id="refsslcert2">

  <refmeta>
    <refentrytitle>ne_ssl_cert_cmp</refentrytitle>
    <manvolnum>3</manvolnum>
  </refmeta>

  <refnamediv>
    <refname id="ne_ssl_cert_cmp">ne_ssl_cert_cmp</refname>
    <refname id="ne_ssl_cert_free">ne_ssl_cert_free</refname>
    <refname id="ne_ssl_cert_digest">ne_ssl_cert_digest</refname>
    <refname id="ne_ssl_cert_hdigest">ne_ssl_cert_hdigest</refname>
    <refname id="ne_ssl_cert_validity">ne_ssl_cert_validity</refname>
    <refname id="ne_ssl_cert_validity_time">ne_ssl_cert_validity_time</refname>
    <refpurpose>functions to operate on certificate objects</refpurpose>
  </refnamediv>
  
  <refsynopsisdiv>

    <funcsynopsis>

      <funcsynopsisinfo>#include &lt;ne_header.h&gt;</funcsynopsisinfo>

      <funcprototype>
        <funcdef>int <function>ne_ssl_cert_cmp</function></funcdef>
        <paramdef>const ne_ssl_certificate *<parameter>c1</parameter></paramdef>
        <paramdef>const ne_ssl_certificate *<parameter>c2</parameter></paramdef>
      </funcprototype>

      <funcprototype>
        <funcdef>void <function>ne_ssl_cert_free</function></funcdef>
        <paramdef>ne_ssl_certificate *<parameter>cert</parameter></paramdef>
      </funcprototype>

      <funcprototype>
        <funcdef>int <function>ne_ssl_cert_digest</function></funcdef>
        <paramdef>const ne_ssl_certificate *<parameter>c1</parameter></paramdef>
        <paramdef>char *<parameter>digest</parameter></paramdef>
      </funcprototype>

      <funcprototype>
        <funcdef>char *<function>ne_ssl_cert_hdigest</function></funcdef>
        <paramdef>const ne_ssl_certificate *<parameter>c1</parameter></paramdef>
        <paramdef>unsigned int <parameter>flags</parameter></paramdef>
      </funcprototype>

      <funcprototype>
        <funcdef>void <function>ne_ssl_cert_validity_time</function></funcdef>
        <paramdef>const ne_ssl_certificate *<parameter>cert</parameter></paramdef>
        <paramdef>time_t *<parameter>from</parameter></paramdef>
        <paramdef>time_t *<parameter>until</parameter></paramdef>
      </funcprototype>

      <funcprototype>
        <funcdef>void <function>ne_ssl_cert_validity</function></funcdef>
        <paramdef>const ne_ssl_certificate *<parameter>cert</parameter></paramdef>
        <paramdef>char *<parameter>from</parameter></paramdef>
        <paramdef>char *<parameter>until</parameter></paramdef>
      </funcprototype>
    </funcsynopsis>

  </refsynopsisdiv>

  <refsect1>
    <title>Description</title>

    <para>The <function>ne_ssl_cert_cmp</function> function can be
    used to compare two certificate objects; it returns zero if they
    refer to the same certificate, and non-zero otherwise.</para>

    <para>The <function>ne_ssl_cert_free</function> function can be
    used to destroy a certificate object when it is no longer
    needed.</para>

    <para>The <function>ne_ssl_cert_digest</function> function writes
    a human-readable fingerprint as a NUL-terminated string to the
    <parameter>digest</parameter> buffer provided, in the format
    "aa:bb...:ff". The <parameter>digest</parameter> buffer must be at
    least <literal>NE_SSL_DIGESTLEN</literal> bytes in length.</para>

    <para>The <function>ne_ssl_cert_hdigest</function> function
    returns a human-readable fingerprint for the certificate
    object. The <parameter>flags</parameter> parameter specifies the
    hash formatting options as if passed to <xref linkend="ne_strhash"/>. The
    returned string is malloc-allocated and must be freed after use.</para>

    <para>The <function>ne_ssl_cert_validity_time</function> function
    retrieves both the time from which the certificate is valid from
    and until. Each time is returned through the
    <parameter>from</parameter> and <parameter>until</parameter>
    parameters, which are written as <literal>(time_t)-1</literal> if
    either time cannot be represented as a <literal>time_t</literal>
    value. The <function>ne_ssl_cert_validity</function> function
    similarly writes the validity times to the string buffers
    provided, using RFC 1123-style date formatting (not
    localized). The output parameters must be at least
    <literal>NE_SSL_VDATELEN</literal> bytes in length. Either
    parameter can be passed as &null;.</para>
  </refsect1>

  <refsect1>
    <title>Return value</title>

    <para><function>ne_ssl_cert_cmp</function> returns 0 if the
    certificates are the same, and non-zero otherwise.
    <function>ne_ssl_cert_digest</function> returns 0 on success or
    non-zero on error. The return value of
    <function>ne_ssl_cert_hdigest</function> is a NUL-terminated
    malloc-allocated string, or &null; if the hash cannot be
    created.</para>

  </refsect1>

  <refsect1>
    <title>History</title>

    <para><function>ne_ssl_cert_hdigest</function> is available in
    in &neon; 0.32.0 and later.</para>
  </refsect1>

  <refsect1>
    <title>See also</title>

    <para><xref linkend="ne_strhash"/></para>
  </refsect1>
</refentry>