]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Source/WolfSSL/cyassl/ctaocrypt/blake2-impl.h
Update WolfSSL library to the latest version.
[freertos] / FreeRTOS-Plus / Source / WolfSSL / cyassl / ctaocrypt / blake2-impl.h
1 /*
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-impl.h
14  *
15  * Copyright (C) 2006-2015 wolfSSL Inc.
16  *
17  * This file is part of wolfSSL. (formerly known as CyaSSL)
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-1301, USA
32  */
33
34
35 #ifndef CTAOCRYPT_BLAKE2_IMPL_H
36 #define CTAOCRYPT_BLAKE2_IMPL_H
37
38 #include <cyassl/ctaocrypt/types.h>
39 #include <wolfssl/wolfcrypt/blake2_impl.h>
40
41 #endif  /* CTAOCRYPT_BLAKE2_IMPL_H */
42