blob: 062de2ff62b47555a260f20c9cb0e37632cf6fa6 [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
2 BLAKE2 reference source code package - reference C implementations
3
4 Written in 2012 by Samuel Neves <sneves@dei.uc.pt>
5
6 To the extent possible under law, the author(s) have dedicated all copyright
7 and related and neighboring rights to this software to the public domain
8 worldwide. This software is distributed without any warranty.
9
10 You should have received a copy of the CC0 Public Domain Dedication along with
11 this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
12*/
13/* blake2-int.h
14 *
15 * Copyright (C) 2006-2021 wolfSSL Inc.
16 *
17 * This file is part of wolfSSL.
18 *
19 * wolfSSL is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 2 of the License, or
22 * (at your option) any later version.
23 *
24 * wolfSSL is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
28 *
29 * You should have received a copy of the GNU General Public License
30 * along with this program; if not, write to the Free Software
31 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
32 */
33
34
35
36
37#ifndef CTAOCRYPT_BLAKE2_INT_H
38#define CTAOCRYPT_BLAKE2_INT_H
39
40#include <cyassl/ctaocrypt/types.h>
41#include <wolfssl/wolfcrypt/blake2-int.h>
42
43#endif /* CTAOCRYPT_BLAKE2_INT_H */
44