mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:05:40 +01:00
cert_write : fix "Destination buffer is too small" error
This commit fixes the `Destination buffer is too small` error returned by `mbedtls_cert_write` command when the values of `subject_name` or `issuer_name` parameters exceed 128 characters. I have increased the size of these varaibles from 128 to 256 characters, but I don't know if it's the best way to solve this issue... Fixes #315.
This commit is contained in:
parent
96e75ac97c
commit
2744df4f7a
@ -190,11 +190,11 @@ int main( int argc, char *argv[] )
|
||||
pk_context *issuer_key = &loaded_issuer_key,
|
||||
*subject_key = &loaded_subject_key;
|
||||
char buf[1024];
|
||||
char issuer_name[128];
|
||||
char issuer_name[256];
|
||||
int i;
|
||||
char *p, *q, *r;
|
||||
#if defined(POLARSSL_X509_CSR_PARSE_C)
|
||||
char subject_name[128];
|
||||
char subject_name[256];
|
||||
x509_csr csr;
|
||||
#endif
|
||||
x509write_cert crt;
|
||||
|
Loading…
Reference in New Issue
Block a user