]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
Doc fixes.
authorSimon Josefsson <simon@josefsson.org>
Tue, 26 Feb 2008 09:58:45 +0000 (10:58 +0100)
committerSimon Josefsson <simon@josefsson.org>
Tue, 26 Feb 2008 09:58:45 +0000 (10:58 +0100)
lib/x509/x509_int.h

index 7299d9404b291ca9ab4fca2c5edb3ffdd1f2a565..a29e645605421d720e5dbdb3dcd9486d6588261c 100644 (file)
@@ -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;