blob: b02f968b5ef6c9bbdad703a120943e7666173b37 [file] [log] [blame]
Daniel Kingadc32c02016-05-16 18:25:45 -03001/**
2 * \file poly1305.h
3 *
Manuel Pégourié-Gonnardc7bc9e12018-06-18 10:30:30 +02004 * \brief This file contains Poly1305 definitions and functions.
Daniel Kingadc32c02016-05-16 18:25:45 -03005 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +02006 * Poly1305 is a one-time message authenticator that can be used to
7 * authenticate messages. Poly1305-AES was created by Daniel
8 * Bernstein https://cr.yp.to/mac/poly1305-20050329.pdf The generic
9 * Poly1305 algorithm (not tied to AES) was also standardized in RFC
10 * 7539.
11 *
12 * \author Daniel King <damaki.gh@gmail.com>
13 */
14
15/* Copyright (C) 2006-2018, Arm Limited (or its affiliates), All Rights Reserved.
Daniel Kingadc32c02016-05-16 18:25:45 -030016 * SPDX-License-Identifier: Apache-2.0
17 *
18 * Licensed under the Apache License, Version 2.0 (the "License"); you may
19 * not use this file except in compliance with the License.
20 * You may obtain a copy of the License at
21 *
22 * http://www.apache.org/licenses/LICENSE-2.0
23 *
24 * Unless required by applicable law or agreed to in writing, software
25 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
26 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
27 * See the License for the specific language governing permissions and
28 * limitations under the License.
29 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020030 * This file is part of Mbed TLS (https://tls.mbed.org)
Daniel Kingadc32c02016-05-16 18:25:45 -030031 */
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020032
Daniel Kingadc32c02016-05-16 18:25:45 -030033#ifndef MBEDTLS_POLY1305_H
34#define MBEDTLS_POLY1305_H
35
36#if !defined(MBEDTLS_CONFIG_FILE)
37#include "mbedtls/config.h"
38#else
39#include MBEDTLS_CONFIG_FILE
40#endif
41
42#include <stdint.h>
43#include <stddef.h>
44
Manuel Pégourié-Gonnardb8bd80a2018-05-09 09:54:51 +020045#define MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA -0x0057 /**< Invalid input parameter(s). */
Ron Eldor9924bdc2018-10-04 10:59:13 +030046
47/* MBEDTLS_ERR_POLY1305_FEATURE_UNAVAILABLE is deprecated and should not be
48 * used. */
Manuel Pégourié-Gonnardb8bd80a2018-05-09 09:54:51 +020049#define MBEDTLS_ERR_POLY1305_FEATURE_UNAVAILABLE -0x0059 /**< Feature not available. For example, s part of the API is not implemented. */
Ron Eldor9924bdc2018-10-04 10:59:13 +030050
51/* MBEDTLS_ERR_POLY1305_HW_ACCEL_FAILED is deprecated and should not be used.
52 */
Manuel Pégourié-Gonnard3798b6b2018-05-24 13:27:45 +020053#define MBEDTLS_ERR_POLY1305_HW_ACCEL_FAILED -0x005B /**< Poly1305 hardware accelerator failed. */
Daniel Kingadc32c02016-05-16 18:25:45 -030054
Manuel Pégourié-Gonnard823b7a02018-05-07 10:10:30 +020055#ifdef __cplusplus
56extern "C" {
57#endif
58
Manuel Pégourié-Gonnard95d0bdb2018-05-07 09:58:35 +020059#if !defined(MBEDTLS_POLY1305_ALT)
60
Dawid Drozd428cc522018-07-24 10:02:47 +020061typedef struct mbedtls_poly1305_context
Daniel Kingadc32c02016-05-16 18:25:45 -030062{
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020063 uint32_t r[4]; /** The value for 'r' (low 128 bits of the key). */
64 uint32_t s[4]; /** The value for 's' (high 128 bits of the key). */
65 uint32_t acc[5]; /** The accumulator number. */
66 uint8_t queue[16]; /** The current partial block of data. */
67 size_t queue_len; /** The number of bytes stored in 'queue'. */
Daniel Kingadc32c02016-05-16 18:25:45 -030068}
69mbedtls_poly1305_context;
70
Manuel Pégourié-Gonnard95d0bdb2018-05-07 09:58:35 +020071#else /* MBEDTLS_POLY1305_ALT */
72#include "poly1305_alt.h"
73#endif /* MBEDTLS_POLY1305_ALT */
74
Daniel Kingadc32c02016-05-16 18:25:45 -030075/**
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020076 * \brief This function initializes the specified Poly1305 context.
Daniel Kingadc32c02016-05-16 18:25:45 -030077 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020078 * It must be the first API called before using
79 * the context.
80 *
81 * It is usually followed by a call to
82 * \c mbedtls_poly1305_starts(), then one or more calls to
83 * \c mbedtls_poly1305_update(), then one call to
84 * \c mbedtls_poly1305_finish(), then finally
85 * \c mbedtls_poly1305_free().
86 *
87 * \param ctx The Poly1305 context to initialize.
Daniel Kingadc32c02016-05-16 18:25:45 -030088 */
89void mbedtls_poly1305_init( mbedtls_poly1305_context *ctx );
90
91/**
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020092 * \brief This function releases and clears the specified Poly1305 context.
Daniel Kingadc32c02016-05-16 18:25:45 -030093 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020094 * \param ctx The Poly1305 context to clear.
Daniel Kingadc32c02016-05-16 18:25:45 -030095 */
96void mbedtls_poly1305_free( mbedtls_poly1305_context *ctx );
97
98/**
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +020099 * \brief This function sets the one-time authentication key.
Daniel Kingadc32c02016-05-16 18:25:45 -0300100 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200101 * \warning The key must be unique and unpredictable for each
102 * invocation of Poly1305.
Daniel Kingadc32c02016-05-16 18:25:45 -0300103 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200104 * \param ctx The Poly1305 context to which the key should be bound.
105 * \param key The buffer containing the 256-bit key.
Daniel Kingadc32c02016-05-16 18:25:45 -0300106 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200107 * \return \c 0 on success.
108 * \return #MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA
109 * if ctx or key are NULL.
Daniel Kingadc32c02016-05-16 18:25:45 -0300110 */
Manuel Pégourié-Gonnard4edd51b2018-05-07 10:21:56 +0200111int mbedtls_poly1305_starts( mbedtls_poly1305_context *ctx,
Daniel Kingadc32c02016-05-16 18:25:45 -0300112 const unsigned char key[32] );
113
114/**
Manuel Pégourié-Gonnardd2db09f2018-06-04 12:31:12 +0200115 * \brief This functions feeds an input buffer into an ongoing
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200116 * Poly1305 computation.
Daniel Kingadc32c02016-05-16 18:25:45 -0300117 *
Manuel Pégourié-Gonnardc7bc9e12018-06-18 10:30:30 +0200118 * It is called between \c mbedtls_cipher_poly1305_starts() and
119 * \c mbedtls_cipher_poly1305_finish().
120 * It can be called repeatedly to process a stream of data.
Daniel Kingadc32c02016-05-16 18:25:45 -0300121 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200122 * \param ctx The Poly1305 context to use for the Poly1305 operation.
123 * \param ilen The length of the input data (in bytes). Any value is accepted.
124 * \param input The buffer holding the input data.
125 * This pointer can be NULL if ilen == 0.
Daniel Kingadc32c02016-05-16 18:25:45 -0300126 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200127 * \return \c 0 on success.
128 * \return #MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA
129 * if ctx or input are NULL.
Daniel Kingadc32c02016-05-16 18:25:45 -0300130 */
131int mbedtls_poly1305_update( mbedtls_poly1305_context *ctx,
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200132 const unsigned char *input,
133 size_t ilen );
Daniel Kingadc32c02016-05-16 18:25:45 -0300134
135/**
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200136 * \brief This function generates the Poly1305 Message
137 * Authentication Code (MAC).
Daniel Kingadc32c02016-05-16 18:25:45 -0300138 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200139 * \param ctx The Poly1305 context to use for the Poly1305 operation.
140 * \param mac The buffer to where the MAC is written. Must be big enough
141 * to hold the 16-byte MAC.
Daniel Kingadc32c02016-05-16 18:25:45 -0300142 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200143 * \return \c 0 on success.
144 * \return #MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA
145 * if ctx or mac are NULL.
Daniel Kingadc32c02016-05-16 18:25:45 -0300146 */
147int mbedtls_poly1305_finish( mbedtls_poly1305_context *ctx,
148 unsigned char mac[16] );
149
Daniel Kingadc32c02016-05-16 18:25:45 -0300150/**
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200151 * \brief This function calculates the Poly1305 MAC of the input
152 * buffer with the provided key.
Daniel Kingadc32c02016-05-16 18:25:45 -0300153 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200154 * \warning The key must be unique and unpredictable for each
155 * invocation of Poly1305.
Daniel Kingadc32c02016-05-16 18:25:45 -0300156 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200157 * \param key The buffer containing the 256-bit key.
158 * \param ilen The length of the input data (in bytes). Any value is accepted.
159 * \param input The buffer holding the input data.
160 * This pointer can be NULL if ilen == 0.
161 * \param mac The buffer to where the MAC is written. Must be big enough
162 * to hold the 16-byte MAC.
Daniel Kingadc32c02016-05-16 18:25:45 -0300163 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200164 * \return \c 0 on success.
165 * \return #MBEDTLS_ERR_POLY1305_BAD_INPUT_DATA
166 * if key, input, or mac are NULL.
Daniel Kingadc32c02016-05-16 18:25:45 -0300167 */
168int mbedtls_poly1305_mac( const unsigned char key[32],
Daniel Kingadc32c02016-05-16 18:25:45 -0300169 const unsigned char *input,
Manuel Pégourié-Gonnardb1ac5e72018-05-09 09:25:00 +0200170 size_t ilen,
Daniel Kingadc32c02016-05-16 18:25:45 -0300171 unsigned char mac[16] );
172
Manuel Pégourié-Gonnardc22e61a2018-05-24 13:51:05 +0200173#if defined(MBEDTLS_SELF_TEST)
Daniel Kingadc32c02016-05-16 18:25:45 -0300174/**
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200175 * \brief The Poly1305 checkup routine.
Daniel Kingadc32c02016-05-16 18:25:45 -0300176 *
Manuel Pégourié-Gonnardb500f8b2018-05-08 12:43:48 +0200177 * \return \c 0 on success.
178 * \return \c 1 on failure.
Daniel Kingadc32c02016-05-16 18:25:45 -0300179 */
180int mbedtls_poly1305_self_test( int verbose );
Manuel Pégourié-Gonnardc22e61a2018-05-24 13:51:05 +0200181#endif /* MBEDTLS_SELF_TEST */
Daniel Kingadc32c02016-05-16 18:25:45 -0300182
Manuel Pégourié-Gonnard823b7a02018-05-07 10:10:30 +0200183#ifdef __cplusplus
184}
185#endif
186
Daniel Kingadc32c02016-05-16 18:25:45 -0300187#endif /* MBEDTLS_POLY1305_H */