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
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;