Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.1-rc2 44 lines 1.2 kB view raw
1/* 2 * Hash Info: Hash algorithms information 3 * 4 * Copyright (c) 2013 Dmitry Kasatkin <d.kasatkin@samsung.com> 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms of the GNU General Public License as published by the Free 8 * Software Foundation; either version 2 of the License, or (at your option) 9 * any later version. 10 * 11 */ 12 13#ifndef _CRYPTO_HASH_INFO_H 14#define _CRYPTO_HASH_INFO_H 15 16#include <crypto/sha.h> 17#include <crypto/md5.h> 18#include <crypto/streebog.h> 19 20#include <uapi/linux/hash_info.h> 21 22/* not defined in include/crypto/ */ 23#define RMD128_DIGEST_SIZE 16 24#define RMD160_DIGEST_SIZE 20 25#define RMD256_DIGEST_SIZE 32 26#define RMD320_DIGEST_SIZE 40 27 28/* not defined in include/crypto/ */ 29#define WP512_DIGEST_SIZE 64 30#define WP384_DIGEST_SIZE 48 31#define WP256_DIGEST_SIZE 32 32 33/* not defined in include/crypto/ */ 34#define TGR128_DIGEST_SIZE 16 35#define TGR160_DIGEST_SIZE 20 36#define TGR192_DIGEST_SIZE 24 37 38/* not defined in include/crypto/ */ 39#define SM3256_DIGEST_SIZE 32 40 41extern const char *const hash_algo_name[HASH_ALGO__LAST]; 42extern const int hash_digest_size[HASH_ALGO__LAST]; 43 44#endif /* _CRYPTO_HASH_INFO_H */