Lines Matching full:p224
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);
807 p224::Add(minus_b, sum, &a_again);
811 TEST(P224, Infinity) {
817 p224::ScalarBaseMult(reinterpret_cast<const uint8*>(zeros), &a);