/external/chromium_org/crypto/ |
p224_spake.cc | 11 #include <crypto/p224.h> 28 // static const char kSeed1[] = "P224 point generation seed (M)"; 29 // static const char kSeed2[] = "P224 point generation seed (N)"; 40 // EC_GROUP* p224 = EC_GROUP_new_by_curve_name(NID_secp224r1); 41 // EC_POINT* p = EC_POINT_new(p224); 48 // p224, p, &x, digest[28] & 1, NULL)) { 50 // EC_POINT_get_affine_coordinates_GFp(p224, p, &x, &y, NULL); 69 // EC_GROUP_free(p224); 78 const crypto::p224::Point kM = { 86 const crypto::p224::Point kN = [all...] |
p224_spake.h | 9 #include <crypto/p224.h> 101 uint8 x_[p224::kScalarBytes]; 104 uint8 pw_[p224::kScalarBytes];
|
p224.h | 16 // P224 implements an elliptic curve group, commonly known as P224 and defined 18 namespace p224 { namespace in namespace:crypto 39 // P224 field. 56 } // namespace p224
|
crypto.target.darwin-arm.mk | 41 crypto/p224.cc \
|
crypto.target.darwin-arm64.mk | 41 crypto/p224.cc \
|
crypto.target.darwin-mips.mk | 41 crypto/p224.cc \
|
crypto.target.darwin-mips64.mk | 41 crypto/p224.cc \
|
crypto.target.darwin-x86.mk | 41 crypto/p224.cc \
|
crypto.target.darwin-x86_64.mk | 41 crypto/p224.cc \
|
crypto.target.linux-arm.mk | 41 crypto/p224.cc \
|
crypto.target.linux-arm64.mk | 41 crypto/p224.cc \
|
crypto.target.linux-mips.mk | 41 crypto/p224.cc \
|
crypto.target.linux-mips64.mk | 41 crypto/p224.cc \
|
crypto.target.linux-x86.mk | 41 crypto/p224.cc \
|
crypto.target.linux-x86_64.mk | 41 crypto/p224.cc \
|
p224.cc | 5 // This is an implementation of the P224 elliptic curve group. It's written to 10 #include "crypto/p224.h" 33 using crypto::p224::FieldElement; 35 // kP is the P224 prime. 416 using crypto::p224::Point; 645 namespace p224 { namespace in namespace:crypto 741 } // namespace p224
|
p224_unittest.cc | 8 #include "crypto/p224.h" 14 using p224::Point; 16 // kBasePointExternal is the P224 base point in external representation. 37 // kNISTTestVectors are the NIST test vectors for P224. 770 TEST(P224, ExternalToInternalAndBack) { 784 TEST(P224, ScalarBaseMult) { 788 p224::ScalarBaseMult(kNISTTestVectors[i].scalar, &point); 796 TEST(P224, Addition) { 804 p224::Negate(b, &minus_b); 805 p224::Add(a, b, &sum) [all...] |