Lines Matching refs:poly1305
1508 POLY1305 poly1305; in test_poly1305() local
1520 Poly1305_Init(&poly1305, key); in test_poly1305()
1521 Poly1305_Update(&poly1305, in, inlen); in test_poly1305()
1522 Poly1305_Final(&poly1305, out); in test_poly1305()
1530 Poly1305_Init(&poly1305, key); in test_poly1305()
1531 Poly1305_Update(&poly1305, in, 1); in test_poly1305()
1532 Poly1305_Update(&poly1305, in+1, inlen-1); in test_poly1305()
1533 Poly1305_Final(&poly1305, out); in test_poly1305()
1544 Poly1305_Init(&poly1305, key); in test_poly1305()
1545 Poly1305_Update(&poly1305, in, half); in test_poly1305()
1546 Poly1305_Update(&poly1305, in+half, inlen-half); in test_poly1305()
1547 Poly1305_Final(&poly1305, out); in test_poly1305()
1555 Poly1305_Init(&poly1305, key); in test_poly1305()
1556 Poly1305_Update(&poly1305, in, half); in test_poly1305()
1557 Poly1305_Update(&poly1305, in+half, inlen-half); in test_poly1305()
1558 Poly1305_Final(&poly1305, out); in test_poly1305()