Path: blob/main/crypto/openssl/demos/mac/poly1305.c
34889 views
/*1* Copyright 2021-2023 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/89#include <stdio.h>10#include <stdlib.h>11#include <string.h>12#include <openssl/core_names.h>13#include <openssl/evp.h>14#include <openssl/params.h>15#include <openssl/err.h>1617/*18* This is a demonstration of how to compute Poly1305-AES using the OpenSSL19* Poly1305 and AES providers and the EVP API.20*21* Please note that:22*23* - Poly1305 must never be used alone and must be used in conjunction with24* another primitive which processes the input nonce to be secure;25*26* - you must never pass a nonce to the Poly1305 primitive directly;27*28* - Poly1305 exhibits catastrophic failure (that is, can be broken) if a29* nonce is ever reused for a given key.30*31* If you are looking for a general purpose MAC, you should consider using a32* different MAC and looking at one of the other examples, unless you have a33* good familiarity with the details and caveats of Poly1305.34*35* This example uses AES, as described in the original paper, "The Poly1305-AES36* message authentication code":37* https://cr.yp.to/mac/poly1305-20050329.pdf38*39* The test vectors below are from that paper.40*/4142/*43* Hard coding the key into an application is very bad.44* It is done here solely for educational purposes.45* These are the "r" and "k" inputs to Poly1305-AES.46*/47static const unsigned char test_r[] = {480x85, 0x1f, 0xc4, 0x0c, 0x34, 0x67, 0xac, 0x0b,490xe0, 0x5c, 0xc2, 0x04, 0x04, 0xf3, 0xf7, 0x0050};5152static const unsigned char test_k[] = {530xec, 0x07, 0x4c, 0x83, 0x55, 0x80, 0x74, 0x17,540x01, 0x42, 0x5b, 0x62, 0x32, 0x35, 0xad, 0xd655};5657/*58* Hard coding a nonce must not be done under any circumstances and is done here59* purely for demonstration purposes. Please note that Poly1305 exhibits60* catastrophic failure (that is, can be broken) if a nonce is ever reused for a61* given key.62*/63static const unsigned char test_n[] = {640xfb, 0x44, 0x73, 0x50, 0xc4, 0xe8, 0x68, 0xc5,650x2a, 0xc3, 0x27, 0x5c, 0xf9, 0xd4, 0x32, 0x7e66};6768/* Input message. */69static const unsigned char test_m[] = {700xf3, 0xf671};7273static const unsigned char expected_output[] = {740xf4, 0xc6, 0x33, 0xc3, 0x04, 0x4f, 0xc1, 0x45,750xf8, 0x4f, 0x33, 0x5c, 0xb8, 0x19, 0x53, 0xde76};7778/*79* A property query used for selecting the POLY1305 implementation.80*/81static char *propq = NULL;8283int main(int argc, char **argv)84{85int ret = EXIT_FAILURE;86EVP_CIPHER *aes = NULL;87EVP_CIPHER_CTX *aesctx = NULL;88EVP_MAC *mac = NULL;89EVP_MAC_CTX *mctx = NULL;90unsigned char composite_key[32];91unsigned char out[16];92OSSL_LIB_CTX *library_context = NULL;93size_t out_len = 0;94int aes_len = 0;9596library_context = OSSL_LIB_CTX_new();97if (library_context == NULL) {98fprintf(stderr, "OSSL_LIB_CTX_new() returned NULL\n");99goto end;100}101102/* Fetch the Poly1305 implementation */103mac = EVP_MAC_fetch(library_context, "POLY1305", propq);104if (mac == NULL) {105fprintf(stderr, "EVP_MAC_fetch() returned NULL\n");106goto end;107}108109/* Create a context for the Poly1305 operation */110mctx = EVP_MAC_CTX_new(mac);111if (mctx == NULL) {112fprintf(stderr, "EVP_MAC_CTX_new() returned NULL\n");113goto end;114}115116/* Fetch the AES implementation */117aes = EVP_CIPHER_fetch(library_context, "AES-128-ECB", propq);118if (aes == NULL) {119fprintf(stderr, "EVP_CIPHER_fetch() returned NULL\n");120goto end;121}122123/* Create a context for AES */124aesctx = EVP_CIPHER_CTX_new();125if (aesctx == NULL) {126fprintf(stderr, "EVP_CIPHER_CTX_new() returned NULL\n");127goto end;128}129130/* Initialize the AES cipher with the 128-bit key k */131if (!EVP_EncryptInit_ex(aesctx, aes, NULL, test_k, NULL)) {132fprintf(stderr, "EVP_EncryptInit_ex() failed\n");133goto end;134}135136/*137* Disable padding for the AES cipher. We do not strictly need to do this as138* we are encrypting a single block and thus there are no alignment or139* padding concerns, but this ensures that the operation below fails if140* padding would be required for some reason, which in this circumstance141* would indicate an implementation bug.142*/143if (!EVP_CIPHER_CTX_set_padding(aesctx, 0)) {144fprintf(stderr, "EVP_CIPHER_CTX_set_padding() failed\n");145goto end;146}147148/*149* Computes the value AES_k(n) which we need for our Poly1305-AES150* computation below.151*/152if (!EVP_EncryptUpdate(aesctx, composite_key + 16, &aes_len,153test_n, sizeof(test_n))) {154fprintf(stderr, "EVP_EncryptUpdate() failed\n");155goto end;156}157158/*159* The Poly1305 provider expects the key r to be passed as the first 16160* bytes of the "key" and the processed nonce (that is, AES_k(n)) to be161* passed as the second 16 bytes of the "key". We already put the processed162* nonce in the correct place above, so copy r into place.163*/164memcpy(composite_key, test_r, 16);165166/* Initialise the Poly1305 operation */167if (!EVP_MAC_init(mctx, composite_key, sizeof(composite_key), NULL)) {168fprintf(stderr, "EVP_MAC_init() failed\n");169goto end;170}171172/* Make one or more calls to process the data to be authenticated */173if (!EVP_MAC_update(mctx, test_m, sizeof(test_m))) {174fprintf(stderr, "EVP_MAC_update() failed\n");175goto end;176}177178/* Make one call to the final to get the MAC */179if (!EVP_MAC_final(mctx, out, &out_len, sizeof(out))) {180fprintf(stderr, "EVP_MAC_final() failed\n");181goto end;182}183184printf("Generated MAC:\n");185BIO_dump_indent_fp(stdout, out, out_len, 2);186putchar('\n');187188if (out_len != sizeof(expected_output)) {189fprintf(stderr, "Generated MAC has an unexpected length\n");190goto end;191}192193if (CRYPTO_memcmp(expected_output, out, sizeof(expected_output)) != 0) {194fprintf(stderr, "Generated MAC does not match expected value\n");195goto end;196}197198ret = EXIT_SUCCESS;199end:200EVP_CIPHER_CTX_free(aesctx);201EVP_CIPHER_free(aes);202EVP_MAC_CTX_free(mctx);203EVP_MAC_free(mac);204OSSL_LIB_CTX_free(library_context);205if (ret != EXIT_SUCCESS)206ERR_print_errors_fp(stderr);207return ret;208}209210211