1
0
mirror of https://github.com/ARMmbed/mbedtls.git synced 2025-07-25 18:03:15 +08:00

- Fixed minor bug by zeroizing result memory

This commit is contained in:
Paul Bakker 2011-12-04 17:06:56 +00:00
parent 6c0ceb3f9a
commit 310c25e564

View File

@ -56,7 +56,9 @@ int main( int argc, char *argv[] )
unsigned char buf[512];
((void) argv);
memset(result, 0, sizeof( result ) );
ret = 1;
if( argc != 1 )
{
printf( "usage: rsa_decrypt\n" );