Lines Matching refs:P224
5 #include "third_party/chromium/crypto/p224.h"
17 using p224::Point;
19 // kBasePointExternal is the P224 base point in external representation.
38 // kNISTTestVectors are the NIST test vectors for P224.
771 TEST(P224, ExternalToInternalAndBack) {
785 TEST(P224, ScalarBaseMult) {
789 p224::ScalarBaseMult(kNISTTestVectors[i].scalar, &point);
797 TEST(P224, Addition) {
805 p224::Negate(b, &minus_b);
806 p224::Add(a, b, &sum);
808 p224::Add(minus_b, sum, &a_again);
812 TEST(P224, Infinity) {
818 p224