sc25519_iszero.c 199 B

12345678910
  1. #include "sc25519.h"
  2. int sc25519_iszero_vartime(const sc25519 *x)
  3. {
  4. if(x->v[0] != 0) return 0;
  5. if(x->v[1] != 0) return 0;
  6. if(x->v[2] != 0) return 0;
  7. if(x->v[3] != 0) return 0;
  8. return 1;
  9. }