1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Use PK internally for x509write_crt

This commit is contained in:
Manuel Pégourié-Gonnard
2013-09-12 05:39:46 +02:00
committed by Paul Bakker
parent f38e71afd5
commit 53c642504e
2 changed files with 43 additions and 22 deletions

View File

@ -86,8 +86,8 @@ typedef struct _x509write_cert
{
int version;
mpi serial;
rsa_context *subject_key;
rsa_context *issuer_key;
pk_context *subject_key;
pk_context *issuer_key;
asn1_named_data *subject;
asn1_named_data *issuer;
md_type_t md_alg;