mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 21:01:03 +00:00
Fix help message for cert_req/cert_write programs
In cert_req and cert_write programs, "key_certificate_sign" is not an allowed velue for "key_usage" parameter. The correct value is "key_cert_sign". See https://github.com/ARMmbed/mbedtls/blob/development/programs/x509/cert_req.c#L208 and https://github.com/ARMmbed/mbedtls/blob/development/programs/x509/cert_write.c#L323.
This commit is contained in:
parent
d13585f1b3
commit
1f8c20ac9a
|
@ -75,7 +75,7 @@ int main( void )
|
||||||
" key_encipherment\n" \
|
" key_encipherment\n" \
|
||||||
" data_encipherment\n" \
|
" data_encipherment\n" \
|
||||||
" key_agreement\n" \
|
" key_agreement\n" \
|
||||||
" key_certificate_sign\n" \
|
" key_cert_sign\n" \
|
||||||
" crl_sign\n" \
|
" crl_sign\n" \
|
||||||
" ns_cert_type=%%s default: (empty)\n" \
|
" ns_cert_type=%%s default: (empty)\n" \
|
||||||
" Comma-separated-list of values:\n" \
|
" Comma-separated-list of values:\n" \
|
||||||
|
|
|
@ -115,7 +115,7 @@ int main( void )
|
||||||
" key_encipherment\n" \
|
" key_encipherment\n" \
|
||||||
" data_encipherment\n" \
|
" data_encipherment\n" \
|
||||||
" key_agreement\n" \
|
" key_agreement\n" \
|
||||||
" key_certificate_sign\n" \
|
" key_cert_sign\n" \
|
||||||
" crl_sign\n" \
|
" crl_sign\n" \
|
||||||
" ns_cert_type=%%s default: (empty)\n" \
|
" ns_cert_type=%%s default: (empty)\n" \
|
||||||
" Comma-separated-list of values:\n" \
|
" Comma-separated-list of values:\n" \
|
||||||
|
|
Loading…
Reference in a new issue