Searched refs:p224_get_bit (Results 1 – 1 of 1) sorted by relevance
/third_party/boringssl/src/crypto/fipsmodule/ec/ |
D | p224-64.c | 869 static char p224_get_bit(const p224_felem_bytearray in, size_t i) { in p224_get_bit() function 980 uint64_t bits = p224_get_bit(scalar->bytes, i + 4) << 5; in ec_GFp_nistp224_point_mul() 981 bits |= p224_get_bit(scalar->bytes, i + 3) << 4; in ec_GFp_nistp224_point_mul() 982 bits |= p224_get_bit(scalar->bytes, i + 2) << 3; in ec_GFp_nistp224_point_mul() 983 bits |= p224_get_bit(scalar->bytes, i + 1) << 2; in ec_GFp_nistp224_point_mul() 984 bits |= p224_get_bit(scalar->bytes, i) << 1; in ec_GFp_nistp224_point_mul() 985 bits |= p224_get_bit(scalar->bytes, i - 1); in ec_GFp_nistp224_point_mul() 1025 uint64_t bits = p224_get_bit(scalar->bytes, i + 196) << 3; in ec_GFp_nistp224_point_mul_base() 1026 bits |= p224_get_bit(scalar->bytes, i + 140) << 2; in ec_GFp_nistp224_point_mul_base() 1027 bits |= p224_get_bit(scalar->bytes, i + 84) << 1; in ec_GFp_nistp224_point_mul_base() [all …]
|