mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-23 15:55:10 +01:00
Parse CRLs signed with RSASSA-PSS
This commit is contained in:
parent
9df5c96214
commit
8e42ff6bde
8 changed files with 159 additions and 3 deletions
|
|
@ -93,6 +93,9 @@ typedef struct _x509_crl
|
|||
x509_buf sig;
|
||||
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_crl *next;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue