2021-09-06 14:23:14 +00:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2019-09-25 13:37:26 +00:00
|
|
|
#ifndef CRYPTO_HASH_H
|
|
|
|
#define CRYPTO_HASH_H
|
|
|
|
|
2023-02-21 00:41:21 +00:00
|
|
|
#include "kerncompat.h"
|
2023-08-28 20:12:13 +00:00
|
|
|
#include <stddef.h>
|
2019-09-25 13:37:26 +00:00
|
|
|
|
|
|
|
#define CRYPTO_HASH_SIZE_MAX 32
|
|
|
|
|
2019-06-10 12:56:11 +00:00
|
|
|
int hash_crc32c(const u8 *buf, size_t length, u8 *out);
|
2019-09-25 13:37:26 +00:00
|
|
|
int hash_xxhash(const u8 *buf, size_t length, u8 *out);
|
2019-10-07 11:13:26 +00:00
|
|
|
int hash_sha256(const u8 *buf, size_t length, u8 *out);
|
2019-10-07 16:19:51 +00:00
|
|
|
int hash_blake2b(const u8 *buf, size_t length, u8 *out);
|
2019-09-25 13:37:26 +00:00
|
|
|
|
2023-02-16 02:30:46 +00:00
|
|
|
void hash_init_accel(void);
|
2023-02-16 03:36:20 +00:00
|
|
|
void hash_init_crc32c(void);
|
2023-02-16 02:30:46 +00:00
|
|
|
|
2019-09-25 13:37:26 +00:00
|
|
|
#endif
|