From: Simon Josefsson Date: Tue, 26 Feb 2008 09:58:45 +0000 (+0100) Subject: Doc fixes. X-Git-Tag: gnutls_2_3_2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84ba11aee9e266318ec076d2b3d37b30fa6bfac2;p=thirdparty%2Fgnutls.git Doc fixes. --- 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;