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

  /external/boringssl/src/crypto/fipsmodule/ec/
ec_montgomery.c 244 // two_z1z2 = (z1 + z2)**2 - (z1z1 + z2z2) = 2z1z2
245 EC_FELEM two_z1z2; local
246 ec_felem_add(group, &two_z1z2, &a->Z, &b->Z);
247 ec_GFp_mont_felem_sqr(group, &two_z1z2, &two_z1z2);
248 ec_felem_sub(group, &two_z1z2, &two_z1z2, &z1z1);
249 ec_felem_sub(group, &two_z1z2, &two_z1z2, &z2z2);
266 // z_out = two_z1z2 *
    [all...]
  /external/boringssl/src/third_party/fiat/
p256.c 272 fe u1, s1, two_z1z2; local
280 // two_z1z2 = (z1 + z2)**2 - (z1z1 + z2z2) = 2z1z2
281 fe_add(two_z1z2, z1, z2);
282 fe_sqr(two_z1z2, two_z1z2);
283 fe_sub(two_z1z2, two_z1z2, z1z1);
284 fe_sub(two_z1z2, two_z1z2, z2z2);
294 // two_z1z2 = 2z1z
    [all...]

Completed in 82 milliseconds