Lines Matching +full:2 +full:x32 +full:- +full:bit
2 * Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved.
19 * This is a demonstration of how to compute Poly1305-AES using the OpenSSL
24 * - Poly1305 must never be used alone and must be used in conjunction with
27 * - you must never pass a nonce to the Poly1305 primitive directly;
29 * - Poly1305 exhibits catastrophic failure (that is, can be broken) if a
36 * This example uses AES, as described in the original paper, "The Poly1305-AES
38 * https://cr.yp.to/mac/poly1305-20050329.pdf
46 * These are the "r" and "k" inputs to Poly1305-AES.
55 0x01, 0x42, 0x5b, 0x62, 0x32, 0x35, 0xad, 0xd6
66 0x2a, 0xc3, 0x27, 0x5c, 0xf9, 0xd4, 0x32, 0x7e
118 aes = EVP_CIPHER_fetch(library_context, "AES-128-ECB", propq); in main()
131 /* Initialize the AES cipher with the 128-bit key k */ in main()
150 * Computes the value AES_k(n) which we need for our Poly1305-AES in main()
186 BIO_dump_indent_fp(stdout, out, out_len, 2); in main()