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

  /external/chromium_org/crypto/
curve25519_unittest.cc 16 // two parties: alice and bob. Runs ScalarBaseMult and ScalarMult to compute
33 curve25519::ScalarMult(alice_private_key, bob_public_key, alice_shared_key);
38 curve25519::ScalarMult(bob_private_key, alice_public_key, bob_shared_key);
curve25519.cc 19 void ScalarMult(const uint8* private_key,
curve25519.h 27 // ScalarMult computes the |shared_key| from |private_key| and
33 CRYPTO_EXPORT void ScalarMult(const uint8* private_key,
p224.h 42 // ScalarMult computes *out = in*scalar where scalar is a 28-byte, big-endian
44 void CRYPTO_EXPORT ScalarMult(const Point& in, const uint8* scalar, Point* out);
p224_spake.cc 119 p224::ScalarMult(is_server_ ? kN : kM, pw_, &MNpw);
177 p224::ScalarMult(is_server_ ? kM : kN, pw_, &MNpw);
184 p224::ScalarMult(Y, x_, &k);
p224.cc 591 // ScalarMult calculates *out = a*scalar where scalar is a big-endian number of
593 void ScalarMult(Point* out, const Point& a,
702 void ScalarMult(const Point& in, const uint8* scalar, Point* out) {
703 ::ScalarMult(out, in, scalar, 28);
716 ::ScalarMult(out, kBasePoint, scalar, 28);
  /external/chromium_org/net/quic/crypto/
curve25519_key_exchange.cc 70 crypto::curve25519::ScalarMult(

Completed in 992 milliseconds