summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-02-26 10:58:45 +0100
committerSimon Josefsson <simon@josefsson.org>2008-02-26 10:58:45 +0100
commit84ba11aee9e266318ec076d2b3d37b30fa6bfac2 (patch)
tree78a933f0becd8dd901ee95bbbd38c237924fec1f /lib
parent2a9072e48d4c5fcad9b459140f840dec0d2a9b17 (diff)
downloadgnutls-84ba11aee9e266318ec076d2b3d37b30fa6bfac2.tar.gz
Doc fixes.
Diffstat (limited to 'lib')
-rw-r--r--lib/x509/x509_int.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/lib/x509/x509_int.h b/lib/x509/x509_int.h
index 7299d9404b..a29e645605 100644
--- a/lib/x509/x509_int.h
+++ b/lib/x509/x509_int.h
@@ -69,9 +69,11 @@ typedef struct gnutls_x509_crq_int
typedef struct gnutls_x509_privkey_int
{
- mpi_t params[MAX_PRIV_PARAMS_SIZE]; /* the size of params depends on the public
- * key algorithm
- */
+ /* the size of params depends on the public
+ * key algorithm
+ */
+ mpi_t params[MAX_PRIV_PARAMS_SIZE];
+
/*
* RSA: [0] is modulus
* [1] is public exponent
@@ -91,11 +93,12 @@ typedef struct gnutls_x509_privkey_int
gnutls_pk_algorithm_t pk_algorithm;
- int crippled; /* The crippled keys will not use the ASN1_TYPE key.
- * The encoding will only be performed at the export
- * phase, to optimize copying etc. Cannot be used with
- * the exported API (used internally only).
- */
+ /* The crippled keys will not use the ASN1_TYPE key. The encoding
+ * will only be performed at the export phase, to optimize copying
+ * etc. Cannot be used with the exported API (used internally only).
+ */
+ int crippled;
+
ASN1_TYPE key;
} gnutls_x509_privkey_int;