mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-01-10 08:28:51 +01:00
Parse CSRs signed with RSASSA-PSS
This commit is contained in:
parent
d4fd57dda4
commit
41cae8e1f9
8 changed files with 129 additions and 1 deletions
|
|
@ -63,6 +63,9 @@ typedef struct _x509_csr
|
|||
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
|
||||
}
|
||||
x509_csr;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue