mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 12:05:36 +01:00
Fixed that selfsign copies issuer_name to subject_name
This commit is contained in:
parent
50dc850c52
commit
93c6aa4014
@ -15,6 +15,7 @@ Bugfix
|
|||||||
* Prevent possible alignment warnings on casting from char * to 'aligned *'
|
* Prevent possible alignment warnings on casting from char * to 'aligned *'
|
||||||
* Misc fixes and additions to dependency checks
|
* Misc fixes and additions to dependency checks
|
||||||
* Const correctness
|
* Const correctness
|
||||||
|
* cert_write with selfsign should use issuer_name as subject_name
|
||||||
|
|
||||||
= PolarSSL 1.3.1 released on 2013-10-15
|
= PolarSSL 1.3.1 released on 2013-10-15
|
||||||
Features
|
Features
|
||||||
|
@ -512,7 +512,7 @@ int main( int argc, char *argv[] )
|
|||||||
|
|
||||||
if( opt.selfsign )
|
if( opt.selfsign )
|
||||||
{
|
{
|
||||||
opt.issuer_name = opt.subject_name;
|
opt.subject_name = opt.issuer_name;
|
||||||
subject_key = issuer_key;
|
subject_key = issuer_key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user