Fix private DER output shifted by one byte.

This commit is contained in:
Christian Walther 2018-11-28 13:32:27 +01:00 committed by Ron Eldor
parent 874b60423e
commit 38c919bc95

View file

@ -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 )