Mark output as public before testing it

Signed-off-by: Gilles Peskine <[email protected]>
This commit is contained in:
Gilles Peskine
2021-10-25 21:24:23 +02:00
parent 85f3165c6a
commit 0f4e3fbd10
+1
View File
@@ -19,6 +19,7 @@ void mask_of_range( int low_arg, int high_arg )
TEST_CF_SECRET( &c, sizeof( c ) );
unsigned char m = mbedtls_base64_mask_of_range( low, high, c );
TEST_CF_PUBLIC( &c, sizeof( c ) );
TEST_CF_PUBLIC( &m, sizeof( m ) );
if( low <= c && c <= high )
TEST_EQUAL( m, 0xff );
else