Revert "Merged RSA-PSS support in Certificate, CSR and CRL"

This reverts commit ab50d8d30c, reversing
changes made to e31b1d992a.
This commit is contained in:
Manuel Pégourié-Gonnard 2014-02-12 09:39:59 +01:00
parent 6df09578bb
commit c9093085ed
37 changed files with 40 additions and 832 deletions

View file

@ -89,9 +89,6 @@ typedef struct _x509_crt
x509_buf sig; /**< Signature: hash of the tbs part signed with the private key. */
md_type_t sig_md; /**< Internal representation of the MD algorithm of the signature algorithm, e.g. POLARSSL_MD_SHA256 */
pk_type_t sig_pk /**< Internal representation of the Public Key algorithm of the signature algorithm, e.g. POLARSSL_PK_RSA */;
#if defined(POLARSSL_RSASSA_PSS_CERTIFICATES)
x509_buf sig_params; /**< Parameters for the signature algorithm */
#endif
struct _x509_crt *next; /**< Next certificate in the CA-chain. */
}