summaryrefslogtreecommitdiff
path: root/doc/tex/certificate.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tex/certificate.tex')
-rw-r--r--doc/tex/certificate.tex14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/tex/certificate.tex b/doc/tex/certificate.tex
index 5c05233055..b3ecfc8d2c 100644
--- a/doc/tex/certificate.tex
+++ b/doc/tex/certificate.tex
@@ -105,8 +105,8 @@ CRL distribution points & 2.5.29.31 & This extension is set by the CA, in order
\\
\par
In \gnutls{} the X.509 certificate structures are handled using the
-\emph{gnutls\_x509\_crt} type and the corresponding private keys with
-the \emph{gnutls\_x509\_privkey} type.
+\emph{gnutls\_x509\_crt\_t} type and the corresponding private keys with
+the \emph{gnutls\_x509\_privkey\_t} type.
All the available functions for X.509 certificate handling have their
prototypes in \emph{gnutls/x509.h}. An example program to demonstrate the
X.509 parsing capabilities can be found at section \ref{ex:x509-info} on
@@ -159,7 +159,7 @@ defined in PKCS \#10 \cite{RFC2986}. Other certificate request's format such as
PKIX's RFC2511 \cite{RFC2511} are not currently supported.
In \gnutls{} the PKCS \#10 structures are handled using the
-\emph{gnutls\_x509\_crq} type.
+\emph{gnutls\_x509\_crq\_t} type.
An example of a certificate request generation can be found at section \ref{ex:crq}
on page \pageref{ex:crq}.
@@ -169,8 +169,8 @@ certificates. It is commonly used in browsers to export and import
the user's identities.
\par
In \gnutls{} the PKCS \#12 structures are handled using the
-\emph{gnutls\_pkcs12} type. This is an abstract type that
-may hold several \emph{gnutls\_pkcs12\_bag} types. The Bag types are the
+\emph{gnutls\_pkcs12\_t} type. This is an abstract type that
+may hold several \emph{gnutls\_pkcs12\_bag\_t} types. The Bag types are the
holders of the actual data, which may be certificates, private
keys or encrypted data. An Bag of type encrypted should be decrypted
in order for its data to be accessed.
@@ -211,8 +211,8 @@ actual owner.
\subsection*{OpenPGP keys}
In \gnutls{} the OpenPGP key structures \cite{RFC2440} are handled using the
-\emph{gnutls\_openpgp\_key} type and the corresponding private keys with
-the \emph{gnutls\_openpgp\_privkey} type. All the prototypes for the key handling
+\emph{gnutls\_openpgp\_key\_t} type and the corresponding private keys with
+the \emph{gnutls\_openpgp\_privkey\_t} type. All the prototypes for the key handling
functions can be found at \emph{gnutls/openpgp.h}.
\subsection*{Verifying an OpenPGP key}