HomeSort by relevance Sort by last modified time
    Searched refs:constant_time_is_zero_w (Results 1 - 5 of 5) sorted by null

  /external/boringssl/src/crypto/
internal.h 303 static inline crypto_word_t constant_time_is_zero_w(crypto_word_t a) { function
318 // constant_time_is_zero_8 acts like |constant_time_is_zero_w| but returns an
321 return (uint8_t)(constant_time_is_zero_w(a));
327 return constant_time_is_zero_w(a ^ b);
constant_time_test.cc 95 EXPECT_EQ(FromBoolW(a == 0), constant_time_is_zero_w(a));
  /external/boringssl/src/crypto/fipsmodule/bn/
cmp.c 199 ret = constant_time_select_int(constant_time_is_zero_w(mask), ret, 1);
205 ret = constant_time_select_int(constant_time_is_zero_w(mask), ret, 0);
random.c 216 mask = constant_time_is_zero_w(mask);
  /external/boringssl/src/crypto/fipsmodule/rsa/
padding.c 212 crypto_word_t equals0 = constant_time_is_zero_w(from[i]);
439 crypto_word_t bad = ~constant_time_is_zero_w(CRYPTO_memcmp(db, phash, mdlen));
440 bad |= ~constant_time_is_zero_w(from[0]);

Completed in 2231 milliseconds