Page MenuHomeSolus

D6186.id14901.diff
No OneTemporary

D6186.id14901.diff

diff --git a/abi_symbols b/abi_symbols
--- a/abi_symbols
+++ b/abi_symbols
@@ -4,6 +4,7 @@
libgnutls.so.30:GNUTLS_3_6_3
libgnutls.so.30:GNUTLS_3_6_4
libgnutls.so.30:GNUTLS_3_6_5
+libgnutls.so.30:GNUTLS_3_6_6
libgnutls.so.30:GNUTLS_FIPS140_3_4
libgnutls.so.30:GNUTLS_PRIVATE_3_4
libgnutls.so.30:_dsa_generate_dss_g
@@ -121,6 +122,8 @@
libgnutls.so.30:gnutls_certificate_set_openpgp_keyring_mem
libgnutls.so.30:gnutls_certificate_set_params_function
libgnutls.so.30:gnutls_certificate_set_pin_function
+libgnutls.so.30:gnutls_certificate_set_rawpk_key_file
+libgnutls.so.30:gnutls_certificate_set_rawpk_key_mem
libgnutls.so.30:gnutls_certificate_set_retrieve_function
libgnutls.so.30:gnutls_certificate_set_retrieve_function2
libgnutls.so.30:gnutls_certificate_set_retrieve_function3
@@ -442,6 +445,8 @@
libgnutls.so.30:gnutls_pcert_export_x509
libgnutls.so.30:gnutls_pcert_import_openpgp
libgnutls.so.30:gnutls_pcert_import_openpgp_raw
+libgnutls.so.30:gnutls_pcert_import_rawpk
+libgnutls.so.30:gnutls_pcert_import_rawpk_raw
libgnutls.so.30:gnutls_pcert_import_x509
libgnutls.so.30:gnutls_pcert_import_x509_list
libgnutls.so.30:gnutls_pcert_import_x509_raw
diff --git a/abi_symbols32 b/abi_symbols32
--- a/abi_symbols32
+++ b/abi_symbols32
@@ -4,6 +4,7 @@
libgnutls.so.30:GNUTLS_3_6_3
libgnutls.so.30:GNUTLS_3_6_4
libgnutls.so.30:GNUTLS_3_6_5
+libgnutls.so.30:GNUTLS_3_6_6
libgnutls.so.30:GNUTLS_FIPS140_3_4
libgnutls.so.30:GNUTLS_PRIVATE_3_4
libgnutls.so.30:_dsa_generate_dss_g
@@ -121,6 +122,8 @@
libgnutls.so.30:gnutls_certificate_set_openpgp_keyring_mem
libgnutls.so.30:gnutls_certificate_set_params_function
libgnutls.so.30:gnutls_certificate_set_pin_function
+libgnutls.so.30:gnutls_certificate_set_rawpk_key_file
+libgnutls.so.30:gnutls_certificate_set_rawpk_key_mem
libgnutls.so.30:gnutls_certificate_set_retrieve_function
libgnutls.so.30:gnutls_certificate_set_retrieve_function2
libgnutls.so.30:gnutls_certificate_set_retrieve_function3
@@ -442,6 +445,8 @@
libgnutls.so.30:gnutls_pcert_export_x509
libgnutls.so.30:gnutls_pcert_import_openpgp
libgnutls.so.30:gnutls_pcert_import_openpgp_raw
+libgnutls.so.30:gnutls_pcert_import_rawpk
+libgnutls.so.30:gnutls_pcert_import_rawpk_raw
libgnutls.so.30:gnutls_pcert_import_x509
libgnutls.so.30:gnutls_pcert_import_x509_list
libgnutls.so.30:gnutls_pcert_import_x509_raw
diff --git a/abi_used_libs b/abi_used_libs
--- a/abi_used_libs
+++ b/abi_used_libs
@@ -3,7 +3,6 @@
libgcc_s.so.1
libgmp.so.10
libhogweed.so.4
-libm.so.6
libnettle.so.6
libopts.so.25
libp11-kit.so.0
diff --git a/abi_used_libs32 b/abi_used_libs32
--- a/abi_used_libs32
+++ b/abi_used_libs32
@@ -3,7 +3,6 @@
libgcc_s.so.1
libgmp.so.10
libhogweed.so.4
-libm.so.6
libnettle.so.6
libp11-kit.so.0
libstdc++.so.6
diff --git a/actions.py b/actions.py
deleted file mode 100644
--- a/actions.py
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/usr/bin/python
-
-
-from pisi.actionsapi import shelltools, get, autotools, pisitools
-import os
-import shutil
-
-def setup():
- if "LD_AS_NEEDED" in os.environ:
- del os.environ["LD_AS_NEEDED"]
-
- libdir = "/usr/lib64" if get.buildTYPE() != "emul32" else "/usr/lib32"
-
-
- confOpts = "--prefix=/usr \
- --libdir=%s \
- --mandir=/usr/share/man \
- --sysconfdir=/etc \
- --docdir=/usr/share/doc \
- --datarootdir=/usr/share \
- --with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt \
- --disable-static" % libdir
-
- if get.buildTYPE() == "emul32":
- shelltools.export("CFLAGS", get.CFLAGS().replace("-march=x86-64", "-march=i686"))
- shelltools.export("CXXFLAGS", get.CXXFLAGS().replace("-march=x86-64", "-march=i686"))
- shelltools.system("linux32 ./configure %s" % confOpts)
- else:
- shelltools.system("./configure %s" % confOpts)
-
-def build():
- autotools.make()
-
-def install():
- idir = get.installDIR()
- # Force to subdirectory so we dont trash 64-bit installs
- if get.buildTYPE() == "emul32":
- idir += "/derpmcderp"
-
- autotools.rawInstall("DESTDIR=%s" % idir)
-
- if get.buildTYPE() == "emul32":
- pisitools.dodir("/usr")
- shelltools.system("mv \"%s/usr/lib32\" \"%s/usr/.\"" % (idir, get.installDIR()))
- shutil.rmtree(idir)
- return
-
- # Install docs
- autotools.make("-C doc/reference install-data-local DESTDIR=%s" % get.installDIR())
diff --git a/component.xml b/component.xml
deleted file mode 100644
--- a/component.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<PISI>
- <Name>security</Name>
-</PISI>
-
diff --git a/package.yml b/package.yml
new file mode 100644
--- /dev/null
+++ b/package.yml
@@ -0,0 +1,46 @@
+name : libgnutls
+version : 3.6.7
+release : 29
+source :
+ - https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.7.tar.xz : 5b3409ad5aaf239808730d1ee12fdcd148c0be00262c7edf157af655a8a188e2
+license : LGPL-2.1-or-later
+component :
+ - security
+ - utils : security
+summary :
+ - The GnuTLS package contains libraries and userspace tools which provide a secure layer over a reliable transport layer
+ - docs : API Documentation for libgnutls
+ - utils: Command line applications for GnuTLS
+description: |
+ GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+replaces :
+ - utils: gnutls
+emul32 : yes
+patterns :
+ - docs :
+ - /usr/share/gtk-doc
+ - /usr/share/info
+ - devel :
+ - /usr/share/man/man3
+ - utils :
+ - /usr/bin
+ - /usr/share/man/man1
+builddeps :
+ - pkgconfig32(autoopts)
+ - pkgconfig32(guile-2.0)
+ - pkgconfig32(libtasn1)
+ - pkgconfig32(nettle)
+ - pkgconfig32(p11-kit-1)
+ - pkgconfig(gtk-doc)
+ - libunistring-32bit-devel
+rundeps :
+ - docs: libgnutls-devel
+setup : |
+ %configure --disable-static \
+ --enable-gtk-doc \
+ --htmldir=/usr/share/gtk-doc/html \
+ --with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt
+build : |
+ %make
+install : |
+ %make_install
diff --git a/pspec.xml b/pspec.xml
deleted file mode 100644
--- a/pspec.xml
+++ /dev/null
@@ -1,352 +0,0 @@
-<?xml version="1.0" ?>
-<!DOCTYPE PISI SYSTEM "https://solus-project.com/standard/pisi-spec.dtd">
-<PISI>
- <Source>
- <Name>gnutls</Name>
- <Homepage>http://www.gnu.org</Homepage>
- <Packager>
- <Name>Ikey Doherty</Name>
- <Email>ikey@evolve-os.com</Email>
- </Packager>
- <Summary>The GnuTLS package contains libraries and userspace tools which provide a secure layer over a reliable transport layer</Summary>
- <Description>The GnuTLS package contains libraries and userspace tools which provide a secure layer over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group. Quoting from the TLS protocol specification:
-
- “The TLS protocol provides communications privacy over the Internet. The protocol allows client/server applications to communicate in a way that is designed to prevent eavesdropping, tampering, or message forgery.”
-
- GnuTLS provides support for TLS 1.3, 1.2, 1.1, 1.0, TLS extensions, including server name and max record size. Additionally, the library supports authentication using the SRP protocol, X.509 certificates and OpenPGP keys, along with support for thse TLS Pre-Shared-Keys (PSK) extension, the Inner Application (TLS/IA) extension and X.509 and OpenPGP certificate handling.
- </Description>
- <License>LGPL-2.1-or-later</License>
- <Archive sha1sum="749fcaba23f63b523ec2ad262caeca6f1e62fc6f" type="tarxz">https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.5.tar.xz</Archive>
-
- <BuildDependencies>
- <Dependency type="pkgconfig">p11-kit-1</Dependency>
- <Dependency type="pkgconfig32">p11-kit-1</Dependency>
- <Dependency type="pkgconfig">libtasn1</Dependency>
- <Dependency type="pkgconfig32">libtasn1</Dependency>
- <Dependency type="pkgconfig">nettle</Dependency>
- <Dependency type="pkgconfig32">nettle</Dependency>
- <Dependency type="pkgconfig">guile-2.0</Dependency>
- <Dependency type="pkgconfig32">guile-2.0</Dependency>
- <Dependency>glibc-32bit-devel</Dependency>
- <Dependency>libgcc-32bit</Dependency>
- <Dependency>gmp-32bit-devel</Dependency>
- <Dependency>libstdc++-32bit</Dependency>
- <Dependency>autogen-32bit-devel</Dependency>
- <Dependency>autogen-devel</Dependency>
- <Dependency>libunistring-32bit-devel</Dependency>
- </BuildDependencies>
- </Source>
-
- <Package>
- <Name>libgnutls</Name>
- <Files>
- <Path fileType="library">/usr/lib64/lib*.so.*</Path>
- <Path fileType="doc">/usr/share/doc</Path>
- <Path fileType="localedata">/usr/share/locale</Path>
- </Files>
- <RuntimeDependencies>
- <Dependency>libunistring</Dependency>
- </RuntimeDependencies>
- </Package>
-
- <Package>
- <Name>libgnutls-32bit</Name>
- <BuildType>emul32</BuildType>
- <PartOf>emul32</PartOf>
- <Files>
- <Path fileType="library">/usr/lib32/lib*.so.*</Path>
- </Files>
- <RuntimeDependencies>
- <Dependency release="current">libgnutls</Dependency>
- <Dependency>libp11-kit-32bit</Dependency>
- <Dependency>libnettle-32bit</Dependency>
- <Dependency>libunistring-32bit</Dependency>
- </RuntimeDependencies>
- </Package>
-
- <Package>
- <Name>libgnutls-devel</Name>
- <Summary>Development files for libgnutls</Summary>
- <Description>Development files for libgnutls</Description>
- <Files>
- <Path fileType="header">/usr/include</Path>
- <Path fileType="library">/usr/lib64/lib*.so</Path>
- <Path fileType="data">/usr/lib64/pkgconfig</Path>
- <Path fileType="man">/usr/share/man/man3</Path>
- </Files>
- <RuntimeDependencies>
- <Dependency release="current">libgnutls</Dependency>
- </RuntimeDependencies>
- </Package>
-
- <Package>
- <Name>libgnutls-32bit-devel</Name>
- <BuildType>emul32</BuildType>
- <Summary>32-bit Development files for libgnutls</Summary>
- <Description>32-bit Development files for libgnutls</Description>
- <Files>
- <Path fileType="library">/usr/lib32/lib*.so</Path>
- <Path fileType="data">/usr/lib32/pkgconfig</Path>
- </Files>
- <RuntimeDependencies>
- <Dependency release="current">libgnutls-32bit</Dependency>
- <Dependency release="current">libgnutls-devel</Dependency>
- <Dependency>libnettle-32bit-devel</Dependency>
- </RuntimeDependencies>
- </Package>
-
- <Package>
- <Name>libgnutls-docs</Name>
- <Summary>API Documentation for libgnutls</Summary>
- <Description>API Documentation for libgnutls</Description>
- <Files>
- <Path fileType="doc">/usr/share/gtk-doc</Path>
- <Path fileType="info">/usr/share/info</Path>
- </Files>
- <RuntimeDependencies>
- <Dependency release="current">libgnutls-devel</Dependency>
- </RuntimeDependencies>
- </Package>
-
- <Package>
- <Name>gnutls</Name>
- <Summary>Command line applications for GnuTLS</Summary>
- <Description>Command line applications for GnuTLS</Description>
- <Files>
- <Path fileType="executable">/usr/bin</Path>
- <Path fileType="man">/usr/share/man/man1</Path>
- </Files>
- <RuntimeDependencies>
- <Dependency>autogen-libs</Dependency>
- </RuntimeDependencies>
- </Package>
-
- <History>
- <Update release="28">
- <Date>09-01-2018</Date>
- <Version>3.6.5</Version>
- <Comment>Update to 3.6.5</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
- </Update>
-
- <Update release="27">
- <Date>09-26-2018</Date>
- <Version>3.6.4</Version>
- <Comment>Update to 3.6.4</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
- </Update>
-
- <Update release="26">
- <Date>09-04-2018</Date>
- <Version>3.6.3</Version>
- <Comment>Backport regression fix</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
- </Update>
-
- <Update release="25">
- <Date>07-16-2018</Date>
- <Version>3.6.3</Version>
- <Comment>Update to 3.6.3</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
- </Update>
-
- <Update release="24">
- <Date>02-19-2018</Date>
- <Version>3.6.2</Version>
- <Comment>Update 3.6.2</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
- </Update>
-
- <Update release="23">
- <Date>08-13-2017</Date>
- <Version>3.5.14</Version>
- <Comment>Update 3.5.14 and fix trust-store path</Comment>
- <Name>Pierre-Yves</Name>
- <Email>pyu@riseup.net</Email>
- </Update>
-
- <Update release="22">
- <Date>04-30-2017</Date>
- <Version>3.5.11</Version>
- <Comment>Fix 32bit dep borkage</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="21">
- <Date>04-08-2017</Date>
- <Version>3.5.11</Version>
- <Comment>Update to 3.5.11</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="20">
- <Date>01-22-2017</Date>
- <Version>3.5.8</Version>
- <Comment>Package bump</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="19">
- <Date>01-22-2017</Date>
- <Version>3.5.8</Version>
- <Comment>Package bump</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="18">
- <Date>01-18-2017</Date>
- <Version>3.5.8</Version>
- <Comment>Update to 3.5.8 to address multiple CVEs</Comment>
- <Name>Peter O'Connor</Name>
- <Email>peter@solus-project.com</Email>
- </Update>
-
- <Update release="17">
- <Date>10-08-2016</Date>
- <Version>3.4.15</Version>
- <Comment>Update to 3.4.15</Comment>
- <Name>Justin Zobel</Name>
- <Email>justin@solus-project.com</Email>
- </Update>
-
- <Update release="16" type="security">
- <Date>06-10-2016</Date>
- <Version>3.4.13</Version>
- <Comment>Update to 3.4.13 to address CVE-2016-4456</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="15">
- <Date>05-22-2016</Date>
- <Version>3.4.9</Version>
- <Comment>Package bump</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="14">
- <Date>03-06-2016</Date>
- <Version>3.4.9</Version>
- <Comment>Package bump</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="13">
- <Date>03-06-2016</Date>
- <Version>3.4.9</Version>
- <Comment>Update to 3.4.9</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="12">
- <Date>03-06-2016</Date>
- <Version>3.2.21</Version>
- <Comment>Package bump</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="11">
- <Date>02-25-2016</Date>
- <Version>3.2.21</Version>
- <Comment>Package bump</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="10">
- <Date>04-17-2015</Date>
- <Version>3.2.21</Version>
- <Comment>Update to 3.2.21</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solus-project.com</Email>
- </Update>
-
- <Update release="9">
- <Date>01-15-2015</Date>
- <Version>3.1.28</Version>
- <Comment>Update to 3.1.28</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@evolve-os.com</Email>
- </Update>
-
- <Update release="8">
- <Date>10-15-2014</Date>
- <Version>3.1.27</Version>
- <Comment>Rebuild for dep changes</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@evolve-os.com</Email>
- </Update>
-
- <Update release="7" type="security">
- <Date>10-15-2014</Date>
- <Version>3.1.27</Version>
- <Comment>CVE-2014-1959:
-lib/x509/verify.c in GnuTLS before 3.1.21 and 3.2.x before 3.2.11 treats version 1 X.509 certificates as intermediate CAs, which allows remote attackers to bypass intended restrictions by leveraging a X.509 V1 certificate from a trusted CA to issue new certificates.
-</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@evolve-os.com</Email>
- </Update>
-
- <Update release="6">
- <Date>09-28-2014</Date>
- <Version>3.1.12</Version>
- <Comment>Update for FileZilla</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@evolve-os.com</Email>
- </Update>
-
- <Update release="5" type="security">
- <Date>07-06-2014</Date>
- <Version>3.1.10</Version>
- <Comment>CVE-2014-3466:
-Buffer overflow in the read_server_hello function in lib/gnutls_handshake.c in GnuTLS before 3.1.25, 3.2.x before 3.2.15, and 3.3.x before 3.3.4 allows remote servers to cause a denial of service (memory corruption) or possibly execute arbitrary code via a long session id in a ServerHello message. </Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey.doherty@gmail.com</Email>
- </Update>
-
- <Update release="4">
- <Date>07-08-2013</Date>
- <Version>3.1.10</Version>
- <Comment>Fix certificate location</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solusos.com</Email>
- </Update>
-
- <Update release="3">
- <Date>04-14-2013</Date>
- <Version>3.1.10</Version>
- <Comment>Add build and runtime dependencies</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solusos.com</Email>
- </Update>
-
- <Update release="2">
- <Date>04-14-2013</Date>
- <Version>3.1.10</Version>
- <Comment>Split packages</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solusos.com</Email>
- </Update>
-
- <Update release="1">
- <Date>04-14-2013</Date>
- <Version>3.1.10</Version>
- <Comment>Add gnutls to repositories</Comment>
- <Name>Ikey Doherty</Name>
- <Email>ikey@solusos.com</Email>
- </Update>
- </History>
-</PISI>
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
new file mode 100644
--- /dev/null
+++ b/pspec_x86_64.xml
@@ -0,0 +1,1326 @@
+<PISI>
+ <Source>
+ <Name>libgnutls</Name>
+ <Packager>
+ <Name>Pierre-Yves</Name>
+ <Email>pyu@riseup.net</Email>
+ </Packager>
+ <License>LGPL-2.1-or-later</License>
+ <PartOf>security</PartOf>
+ <Summary xml:lang="en">The GnuTLS package contains libraries and userspace tools which provide a secure layer over a reliable transport layer</Summary>
+ <Description xml:lang="en">GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+</Description>
+ <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://getsol.us/sources/README.Solus</Archive>
+ </Source>
+ <Package>
+ <Name>libgnutls</Name>
+ <Summary xml:lang="en">The GnuTLS package contains libraries and userspace tools which provide a secure layer over a reliable transport layer</Summary>
+ <Description xml:lang="en">GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+</Description>
+ <PartOf>security</PartOf>
+ <Files>
+ <Path fileType="library">/usr/lib64/libgnutls.so.30</Path>
+ <Path fileType="library">/usr/lib64/libgnutls.so.30.23.2</Path>
+ <Path fileType="library">/usr/lib64/libgnutlsxx.so.28</Path>
+ <Path fileType="library">/usr/lib64/libgnutlsxx.so.28.1.0</Path>
+ <Path fileType="localedata">/usr/share/locale/cs/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/de/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/eo/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/es/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/fi/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/fr/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/it/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/ms/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/nl/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/pl/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/pt_BR/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/sr/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/sv/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/uk/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/vi/LC_MESSAGES/gnutls.mo</Path>
+ <Path fileType="localedata">/usr/share/locale/zh_CN/LC_MESSAGES/gnutls.mo</Path>
+ </Files>
+ </Package>
+ <Package>
+ <Name>libgnutls-32bit</Name>
+ <Summary xml:lang="en">32-bit libraries for libgnutls</Summary>
+ <Description xml:lang="en">GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+</Description>
+ <PartOf>emul32</PartOf>
+ <RuntimeDependencies>
+ <Dependency release="29">libgnutls</Dependency>
+ </RuntimeDependencies>
+ <Files>
+ <Path fileType="library">/usr/lib32/libgnutls.so.30</Path>
+ <Path fileType="library">/usr/lib32/libgnutls.so.30.23.2</Path>
+ <Path fileType="library">/usr/lib32/libgnutlsxx.so.28</Path>
+ <Path fileType="library">/usr/lib32/libgnutlsxx.so.28.1.0</Path>
+ </Files>
+ </Package>
+ <Package>
+ <Name>libgnutls-32bit-devel</Name>
+ <Summary xml:lang="en">Development files for 32-bit libgnutls</Summary>
+ <Description xml:lang="en">GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+</Description>
+ <PartOf>programming.devel</PartOf>
+ <RuntimeDependencies>
+ <Dependency release="29">libgnutls-devel</Dependency>
+ <Dependency release="29">libgnutls-32bit</Dependency>
+ </RuntimeDependencies>
+ <Files>
+ <Path fileType="library">/usr/lib32/libgnutls.so</Path>
+ <Path fileType="library">/usr/lib32/libgnutlsxx.so</Path>
+ <Path fileType="data">/usr/lib32/pkgconfig/gnutls.pc</Path>
+ </Files>
+ </Package>
+ <Package>
+ <Name>libgnutls-devel</Name>
+ <Summary xml:lang="en">Development files for libgnutls</Summary>
+ <Description xml:lang="en">GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+</Description>
+ <PartOf>programming.devel</PartOf>
+ <RuntimeDependencies>
+ <Dependency release="29">libgnutls</Dependency>
+ </RuntimeDependencies>
+ <Files>
+ <Path fileType="header">/usr/include/gnutls/abstract.h</Path>
+ <Path fileType="header">/usr/include/gnutls/compat.h</Path>
+ <Path fileType="header">/usr/include/gnutls/crypto.h</Path>
+ <Path fileType="header">/usr/include/gnutls/dtls.h</Path>
+ <Path fileType="header">/usr/include/gnutls/gnutls.h</Path>
+ <Path fileType="header">/usr/include/gnutls/gnutlsxx.h</Path>
+ <Path fileType="header">/usr/include/gnutls/ocsp.h</Path>
+ <Path fileType="header">/usr/include/gnutls/openpgp.h</Path>
+ <Path fileType="header">/usr/include/gnutls/pkcs11.h</Path>
+ <Path fileType="header">/usr/include/gnutls/pkcs12.h</Path>
+ <Path fileType="header">/usr/include/gnutls/pkcs7.h</Path>
+ <Path fileType="header">/usr/include/gnutls/self-test.h</Path>
+ <Path fileType="header">/usr/include/gnutls/socket.h</Path>
+ <Path fileType="header">/usr/include/gnutls/system-keys.h</Path>
+ <Path fileType="header">/usr/include/gnutls/tpm.h</Path>
+ <Path fileType="header">/usr/include/gnutls/urls.h</Path>
+ <Path fileType="header">/usr/include/gnutls/x509-ext.h</Path>
+ <Path fileType="header">/usr/include/gnutls/x509.h</Path>
+ <Path fileType="library">/usr/lib64/libgnutls.so</Path>
+ <Path fileType="library">/usr/lib64/libgnutlsxx.so</Path>
+ <Path fileType="data">/usr/lib64/pkgconfig/gnutls.pc</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_cert_type_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_cert_usage_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_match_type_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_query_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_query_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_query_entries.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_query_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_query_tlsa.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_query_to_raw_tlsa.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_raw_tlsa.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_state_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_state_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_state_set_dlv_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_strerror.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_verification_status_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_verify_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_verify_crt_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/dane_verify_session_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_aead_cipher_decrypt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_aead_cipher_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_aead_cipher_encrypt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_aead_cipher_encryptv.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_aead_cipher_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_alert_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_alert_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_alert_get_strname.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_alert_send.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_alert_send_appropriate.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_alpn_get_selected_protocol.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_alpn_set_protocols.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_allocate_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_allocate_server_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_free_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_free_server_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_set_params_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_set_server_dh_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_set_server_known_dh_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anon_set_server_params_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anti_replay_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anti_replay_enable.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anti_replay_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anti_replay_set_add_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anti_replay_set_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_anti_replay_set_window.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_auth_client_get_type.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_auth_get_type.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_auth_server_get_type.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_base64_decode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_base64_encode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_buffer_append_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_bye.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_activation_time_peers.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_allocate_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_client_get_request_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_expiration_time_peers.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_free_ca_names.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_free_cas.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_free_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_free_crls.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_free_keys.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_crt_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_ocsp_expiration.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_ours.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_peers.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_peers_subkey_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_trust_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_verify_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_x509_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_get_x509_key.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_server_set_request.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_dh_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_key.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_known_dh_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_ocsp_status_request_file2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_ocsp_status_request_function2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_ocsp_status_request_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_params_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_rawpk_key_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_rawpk_key_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_retrieve_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_retrieve_function2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_retrieve_function3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_trust_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_verify_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_verify_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_verify_limits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_crl.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_crl_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_crl_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_key.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_key_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_key_file2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_key_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_key_mem2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_system_trust.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_trust.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_trust_dir.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_trust_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_set_x509_trust_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_type_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_type_get2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_type_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_type_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_type_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_verification_status_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_verify_peers.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_verify_peers2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_certificate_verify_peers3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_check_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_add_auth.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_decrypt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_decrypt2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_encrypt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_encrypt2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_get_block_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_get_iv_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_get_key_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_get_tag_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_set_iv.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_suite_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_suite_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_cipher_tag.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_compression_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_compression_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_compression_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_compression_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_credentials_clear.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_credentials_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_credentials_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_crypto_register_aead_cipher.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_crypto_register_cipher.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_crypto_register_digest.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_crypto_register_mac.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_check_entry.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_check_entry_expire_time.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_check_entry_time.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_get_default_cache_expiration.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_get_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_remove_session.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_set_cache_expiration.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_set_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_set_remove_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_set_retrieve_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_db_set_store_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_decode_ber_digest_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_decode_gost_rs_value.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_decode_rs_value.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_get_group.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_get_peers_public_bits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_get_prime_bits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_get_pubkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_get_secret_bits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_cpy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_export2_pkcs3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_export_pkcs3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_export_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_generate2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_import_dsa.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_import_pkcs3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_import_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_import_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_params_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dh_set_prime_bits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_digest_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_digest_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_digest_get_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_digest_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_cookie_send.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_cookie_verify.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_get_data_mtu.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_get_mtu.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_get_timeout.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_prestate_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_set_data_mtu.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_set_mtu.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_dtls_set_timeouts.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ecc_curve_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ecc_curve_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ecc_curve_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ecc_curve_get_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ecc_curve_get_pk.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ecc_curve_get_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ecc_curve_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_encode_ber_digest_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_encode_gost_rs_value.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_encode_rs_value.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_error_is_fatal.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_error_to_alert.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_est_record_overhead_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ext_get_current_msg.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ext_get_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ext_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ext_raw_parse.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ext_register.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ext_set_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_fingerprint.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_fips140_mode_enabled.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_fips140_set_mode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_set_audit_log_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_set_log_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_set_log_level.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_set_mem_functions.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_set_mutex.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_global_set_time_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_gost_paramset_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_gost_paramset_get_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_group_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_group_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_group_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_group_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_description_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_get_last_in.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_get_last_out.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_set_hook_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_set_max_packet_length.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_set_post_client_hello_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_set_private_extensions.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_set_random.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_handshake_set_timeout.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hash.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hash_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hash_fast.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hash_get_len.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hash_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hash_output.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_heartbeat_allowed.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_heartbeat_enable.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_heartbeat_get_timeout.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_heartbeat_ping.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_heartbeat_pong.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_heartbeat_set_timeouts.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hex2bin.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hex_decode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hex_decode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hex_encode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hex_encode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hmac.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hmac_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hmac_fast.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hmac_get_len.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hmac_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hmac_output.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_hmac_set_nonce.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_idna_map.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_idna_reverse_map.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_key_generate.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_kx_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_kx_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_kx_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_kx_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_load_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_mac_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_mac_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_mac_get_key_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_mac_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_mac_get_nonce_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_mac_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_memcmp.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_memset.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_add_cert.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_add_cert_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_get_cert_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_get_extension.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_get_nonce.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_get_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_randomize_nonce.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_set_extension.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_req_set_nonce.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_check_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_certs.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_extension.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_nonce.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_produced.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_responder.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_responder2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_responder_raw_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_response.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_signature.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_single.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_get_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_import2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_list_import2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_verify.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_resp_verify_direct.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_status_request_enable_client.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_status_request_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_status_request_get2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_ocsp_status_request_is_checked.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_oid_to_digest.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_oid_to_ecc_curve.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_oid_to_gost_paramset.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_oid_to_mac.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_oid_to_pk.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_oid_to_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_openpgp_privkey_sign_hash.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_openpgp_send_cert.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_packet_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_packet_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_export_openpgp.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_export_x509.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_import_openpgp.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_import_openpgp_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_import_rawpk.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_import_rawpk_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_import_x509.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_import_x509_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_import_x509_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_list_import_x509_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pcert_list_import_x509_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pem_base64_decode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pem_base64_decode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pem_base64_encode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pem_base64_encode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_perror.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pk_algorithm_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pk_bits_to_sec_param.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pk_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pk_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pk_get_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pk_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pk_to_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_add_provider.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_copy_attached_extension.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_copy_pubkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_copy_secret_key.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_copy_x509_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_copy_x509_crt2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_copy_x509_privkey2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_crt_is_known.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_delete_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_get_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_get_raw_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_get_raw_issuer_by_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_get_raw_issuer_by_subject_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_export3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_export_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_flags_get_str.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_get_exts.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_get_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_get_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_get_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_get_type.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_import_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_list_import_url3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_list_import_url4.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_set_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_cpy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_export_pubkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_export_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_generate.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_generate2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_generate3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_get_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_import_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_privkey_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_reinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_set_token_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_check_mechanism.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_get_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_get_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_get_mechanism.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_get_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_get_random.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_get_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_token_set_pin.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs11_type_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_decrypt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_enc_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_encrypt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_get_count.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_get_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_get_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_get_type.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_set_crl.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_set_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_set_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_set_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_bag_set_privkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_generate_mac.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_generate_mac2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_get_bag.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_mac_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_set_bag.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_simple_parse.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs12_verify_mac.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_add_attr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_attrs_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_delete_crl.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_delete_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_attr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_crl_count.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_crl_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_crl_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_crt_count.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_crt_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_crt_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_embedded_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_embedded_data_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_signature_count.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_get_signature_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_set_crl.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_set_crl_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_set_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_set_crt_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_signature_info_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_verify.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs7_verify_direct.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs8_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs_schema_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pkcs_schema_get_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_prf.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_prf_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_prf_rfc5705.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_certificate_type_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_certificate_type_list2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_cipher_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_compression_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_ecc_curve_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_get_cipher_suite_index.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_group_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_init2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_kx_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_mac_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_protocol_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_set_direct.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_sign_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_priority_string_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_decrypt_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_decrypt_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_dsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_dsa_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_ecc_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_ecc_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_gost_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_openpgp.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_pkcs11.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_rsa_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_export_x509.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_generate.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_generate2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_get_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_get_seed.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_get_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_get_type.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_dsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_ecc_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_ext.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_ext2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_ext3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_ext4.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_gost_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_openpgp.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_openpgp_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_pkcs11.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_pkcs11_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_tpm_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_tpm_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_x509.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_import_x509_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_set_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_set_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_sign_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_sign_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_sign_hash.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_sign_hash2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_verify_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_privkey_verify_seed.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_protocol_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_protocol_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_protocol_get_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_protocol_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_allocate_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_allocate_server_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_client_get_hint.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_free_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_free_server_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_server_get_username.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_client_credentials_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_params_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_server_credentials_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_server_credentials_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_server_credentials_hint.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_server_dh_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_server_known_dh_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_psk_set_server_params_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_encrypt_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_dsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_dsa_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_ecc_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_ecc_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_ecc_x962.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_gost_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_export_rsa_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_get_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_get_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_get_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_get_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_dsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_ecc_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_ecc_x962.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_gost_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_openpgp.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_openpgp_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_pkcs11.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_privkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_tpm_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_tpm_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_x509.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_x509_crq.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_import_x509_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_set_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_set_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_verify_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_verify_hash2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_pubkey_verify_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_random_art.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_range_split.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_reauth.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_can_use_length_hiding.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_check_corked.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_check_pending.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_cork.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_disable_padding.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_discard_queued.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_get_direction.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_get_discarded.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_get_max_early_data_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_get_max_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_get_state.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_overhead_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_recv.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_recv_early_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_recv_packet.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_recv_seq.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_send.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_send2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_send_early_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_send_range.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_set_max_early_data_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_set_max_size.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_set_state.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_set_timeout.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_record_uncork.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_register_custom_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_rehandshake.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_rnd.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_rnd_refresh.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_safe_renegotiation_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sec_param_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sec_param_to_pk_bits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sec_param_to_symmetric_bits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_server_name_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_server_name_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_channel_binding.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_enable_compatibility_mode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_etm_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_ext_master_secret_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_ext_register.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_force_valid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_desc.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_id2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_master_secret.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_random.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_get_verify_cert_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_is_resumed.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_key_update.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_resumption_requested.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_set_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_set_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_set_premaster.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_set_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_set_verify_cert.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_set_verify_cert2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_set_verify_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_supplemental_register.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_ticket_enable_client.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_ticket_enable_server.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_ticket_key_generate.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_session_ticket_send.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_set_default_priority.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_set_default_priority_append.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_algorithm_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_algorithm_get_client.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_algorithm_get_requested.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_get_hash_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_get_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_get_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_is_secure.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_is_secure2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_list.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_sign_supports_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_allocate_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_allocate_server_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_base64_decode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_base64_decode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_base64_encode.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_base64_encode2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_free_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_free_server_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_server_get_username.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_set_client_credentials.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_set_client_credentials_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_set_prime_bits.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_set_server_credentials_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_set_server_credentials_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_set_server_fake_salt_seed.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srp_verifier.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_get_keys.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_get_mki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_get_profile_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_get_profile_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_get_selected_profile.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_set_mki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_set_profile.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_srtp_set_profile_direct.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_store_commitment.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_store_pubkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_strerror.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_strerror_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_subject_alt_names_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_subject_alt_names_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_subject_alt_names_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_subject_alt_names_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_supplemental_get_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_supplemental_recv.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_supplemental_register.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_supplemental_send.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_system_key_add_x509.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_system_key_delete.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_system_key_iter_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_system_key_iter_get_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_system_recv_timeout.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tdb_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tdb_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tdb_set_store_commitment_func.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tdb_set_store_func.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tdb_set_verify_func.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tpm_get_registered.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tpm_key_list_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tpm_key_list_get_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tpm_privkey_delete.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_tpm_privkey_generate.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_get_int.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_get_int2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_get_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_get_ptr2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_errno.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_errno_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_fastopen.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_int.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_int2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_ptr.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_ptr2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_pull_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_pull_timeout_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_push_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_transport_set_vec_push_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_url_is_supported.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_utf8_password_normalize.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_verify_stored_pubkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aia_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aia_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aia_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aia_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aki_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aki_get_cert_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aki_get_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aki_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aki_set_cert_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_aki_set_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_cidr_to_rfc5280.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_check_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_dist_points_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_dist_points_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_dist_points_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_dist_points_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_authority_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_crt_count.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_crt_serial.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_dn_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_extension_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_extension_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_extension_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_extension_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_issuer_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_issuer_dn3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_next_update.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_number.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_signature.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_signature_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_this_update.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_get_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_iter_crt_serial.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_iter_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_list_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_list_import2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_privkey_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_set_authority_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_set_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_set_crt_serial.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_set_next_update.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_set_number.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_set_this_update.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_set_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_sign2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crl_verify.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_attribute_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_attribute_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_basic_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_challenge_password.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_dn2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_dn3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_dn_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_extension_by_oid2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_extension_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_extension_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_extension_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_pk_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_signature_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_signature_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_tlsfeatures.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_get_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_privkey_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_basic_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_challenge_password.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_extension_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_key.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_pubkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_subject_alt_othername.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_tlsfeatures.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_set_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_sign2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crq_verify.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_check_email.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_check_hostname.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_check_hostname2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_check_ip.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_check_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_check_key_purpose.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_check_revocation.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_equals.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_equals2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_activation_time.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_authority_info_access.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_authority_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_basic_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_ca_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_dn2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_dn3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_dn_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_expiration_time.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_extension_by_oid2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_extension_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_extension_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_extension_info.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_extension_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_fingerprint.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_inhibit_anypolicy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_dn3.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_name_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_pk_ecc_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_pk_gost_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_pk_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_policy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_proxy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_raw_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_serial.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_signature.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_signature_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_subject.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_subject_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_tlsfeatures.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_get_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_import_pkcs11.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_import_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_list_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_list_import2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_list_import_url.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_list_verify.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_privkey_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_activation_time.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_authority_info_access.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_authority_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_basic_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_ca_status.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_crq.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_crq_extension_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_crq_extensions.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_expiration_time.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_inhibit_anypolicy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_issuer_alt_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_issuer_alt_othername.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_issuer_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_issuer_unique_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_key.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_name_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_policy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_proxy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_proxy_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_pubkey.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_serial.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_subject_alt_othername.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_subject_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_subject_unique_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_tlsfeatures.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_set_version.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_sign.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_sign2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_verify.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_crt_verify_data2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_get_rdn_ava.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_get_str.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_get_str2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_oid_known.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_oid_name.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_dn_set_str.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_aia.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_authority_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_basic_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_crl_dist_points.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_inhibit_anypolicy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_key_purposes.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_name_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_policies.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_private_key_usage_period.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_proxy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_subject_alt_names.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_subject_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_export_tlsfeatures.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_aia.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_authority_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_basic_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_crl_dist_points.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_inhibit_anypolicy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_key_purposes.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_key_usage.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_name_constraints.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_policies.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_private_key_usage_period.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_proxy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_subject_alt_names.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_subject_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_import_tlsfeatures.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_ext_print.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_key_purpose_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_key_purpose_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_key_purpose_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_key_purpose_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_add_excluded.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_add_permitted.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_check.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_check_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_get_excluded.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_get_permitted.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_name_constraints_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_othername_to_virtual.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_policies_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_policies_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_policies_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_policies_set.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_policy_release.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_cpy.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export_gost_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export_pkcs8.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_fix.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_generate.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_generate2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_get_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_get_seed.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_get_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import_gost_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import_openssl.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import_pkcs8.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_sec_param.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_set_flags.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_set_pin_function.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_set_spki.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_sign_data.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_sign_hash.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_verify_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_privkey_verify_seed.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_rdn_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_rdn_get2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_rdn_get_by_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_rdn_get_oid.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_spki_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_spki_get_rsa_pss_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_spki_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_spki_set_rsa_pss_params.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_tlsfeatures_add.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_tlsfeatures_check_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_tlsfeatures_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_tlsfeatures_get.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_tlsfeatures_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_add_cas.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_add_crls.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_add_named_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_add_system_trust.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_add_trust_dir.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_add_trust_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_get_issuer.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_get_issuer_by_dn.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_get_issuer_by_subject_key_id.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_init.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_iter_deinit.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_iter_get_ca.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_remove_cas.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_verify_crt.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_verify_crt2.3</Path>
+ <Path fileType="man">/usr/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3</Path>
+ </Files>
+ </Package>
+ <Package>
+ <Name>libgnutls-docs</Name>
+ <Summary xml:lang="en">API Documentation for libgnutls</Summary>
+ <Description xml:lang="en">GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+</Description>
+ <PartOf>programming.docs</PartOf>
+ <RuntimeDependencies>
+ <Dependency releaseFrom="29">libgnutls-devel</Dependency>
+ </RuntimeDependencies>
+ <Files>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-client-server-use-case.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-handshake-sequence.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-handshake-state.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-internals.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-layers.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-logo.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-modauth.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls-x509.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/api-index-full.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/gnutls.devhelp2</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/home.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/index.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/intro.html</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/left-insensitive.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/left.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/right-insensitive.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/right.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/style.css</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/up-insensitive.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/gnutls/up.png</Path>
+ <Path fileType="doc">/usr/share/gtk-doc/html/pkcs11-vision.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-client-server-use-case.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-guile.info</Path>
+ <Path fileType="info">/usr/share/info/gnutls-handshake-sequence.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-handshake-state.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-internals.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-layers.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-logo.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-modauth.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls-x509.png</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info-1</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info-2</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info-3</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info-4</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info-5</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info-6</Path>
+ <Path fileType="info">/usr/share/info/gnutls.info-7</Path>
+ <Path fileType="info">/usr/share/info/pkcs11-vision.png</Path>
+ </Files>
+ </Package>
+ <Package>
+ <Name>libgnutls-utils</Name>
+ <Summary xml:lang="en">Command line applications for GnuTLS</Summary>
+ <Description xml:lang="en">GnuTLS is a secure communications library implementing the SSL, TLS and DTLS protocols and technologies around them. It provides a simple C language application programming interface (API) to access the secure communications protocols as well as APIs to parse and write X.509, PKCS #12, OpenPGP and other required structures.
+</Description>
+ <PartOf>security</PartOf>
+ <RuntimeDependencies>
+ <Dependency release="29">libgnutls</Dependency>
+ </RuntimeDependencies>
+ <Files>
+ <Path fileType="executable">/usr/bin/certtool</Path>
+ <Path fileType="executable">/usr/bin/gnutls-cli</Path>
+ <Path fileType="executable">/usr/bin/gnutls-cli-debug</Path>
+ <Path fileType="executable">/usr/bin/gnutls-serv</Path>
+ <Path fileType="executable">/usr/bin/ocsptool</Path>
+ <Path fileType="executable">/usr/bin/p11tool</Path>
+ <Path fileType="executable">/usr/bin/psktool</Path>
+ <Path fileType="executable">/usr/bin/srptool</Path>
+ <Path fileType="man">/usr/share/man/man1/certtool.1</Path>
+ <Path fileType="man">/usr/share/man/man1/gnutls-cli-debug.1</Path>
+ <Path fileType="man">/usr/share/man/man1/gnutls-cli.1</Path>
+ <Path fileType="man">/usr/share/man/man1/gnutls-serv.1</Path>
+ <Path fileType="man">/usr/share/man/man1/ocsptool.1</Path>
+ <Path fileType="man">/usr/share/man/man1/p11tool.1</Path>
+ <Path fileType="man">/usr/share/man/man1/psktool.1</Path>
+ <Path fileType="man">/usr/share/man/man1/srptool.1</Path>
+ <Path fileType="man">/usr/share/man/man1/tpmtool.1</Path>
+ </Files>
+ <Replaces>
+ <Package>gnutls</Package>
+ </Replaces>
+ </Package>
+ <History>
+ <Update release="29">
+ <Date>2019-05-01</Date>
+ <Version>3.6.7</Version>
+ <Comment>Packaging update</Comment>
+ <Name>Pierre-Yves</Name>
+ <Email>pyu@riseup.net</Email>
+ </Update>
+ </History>
+</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Jun 12 2023, 12:50 PM (8 w, 4 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5850522
Default Alt Text
D6186.id14901.diff (134 KB)

Event Timeline