Merge remote-tracking branch 'origin/pr/2401' into mbedtls-2.16
* origin/pr/2401: Add ChangeLog entry Fix private DER output shifted by one byte.
This commit is contained in:
commit
cef29a2fd0
2 changed files with 4 additions and 1 deletions
programs/pkey
|
@ -189,7 +189,7 @@ static int write_private_key( mbedtls_pk_context *key, const char *output_file )
|
|||
return( ret );
|
||||
|
||||
len = ret;
|
||||
c = output_buf + sizeof(output_buf) - len - 1;
|
||||
c = output_buf + sizeof(output_buf) - len;
|
||||
}
|
||||
|
||||
if( ( f = fopen( output_file, "w" ) ) == NULL )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue