blob: c8ed1bc0602e3cfb658904e185897f482131b57e [file] [log] [blame]
Gilles Peskinec5048db2021-05-24 22:51:48 +02001/* poly1305_alt.h with dummy types for MBEDTLS_POLY1305_ALT */
2/*
3 * Copyright The Mbed TLS Contributors
Dave Rodgman16799db2023-11-02 19:47:20 +00004 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
Gilles Peskinec5048db2021-05-24 22:51:48 +02005 */
6
7#ifndef POLY1305_ALT_H
8#define POLY1305_ALT_H
9
Gilles Peskine449bd832023-01-11 14:50:10 +010010typedef struct mbedtls_poly1305_context {
Gilles Peskinec5048db2021-05-24 22:51:48 +020011 int dummy;
12}
13mbedtls_poly1305_context;
14
15
16#endif /* poly1305_alt.h */