diff --git a/wolfcrypt/src/fe_operations.c b/wolfcrypt/src/fe_operations.c index 3615c7d6f..5d50517cc 100644 --- a/wolfcrypt/src/fe_operations.c +++ b/wolfcrypt/src/fe_operations.c @@ -1250,8 +1250,6 @@ int fe_isnonzero(const fe f) unsigned char s[32]; fe_tobytes(s,f); return ConstantCompare(s,zero,32); - // @TODO see if constant compare is what is inteded - //return crypto_verify_32(s,zero); }