mtd: rawnand: fsl_elbc: Implement RNDOUT command
[linux/fpc-iii.git] / include / crypto / hash_info.h
blob91786b68dbdbaade4908249888995c074cb99c2d
1 /*
2 * Hash Info: Hash algorithms information
4 * Copyright (c) 2013 Dmitry Kasatkin <d.kasatkin@samsung.com>
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.
13 #ifndef _CRYPTO_HASH_INFO_H
14 #define _CRYPTO_HASH_INFO_H
16 #include <crypto/sha.h>
17 #include <crypto/md5.h>
18 #include <crypto/streebog.h>
20 #include <uapi/linux/hash_info.h>
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
28 /* not defined in include/crypto/ */
29 #define WP512_DIGEST_SIZE 64
30 #define WP384_DIGEST_SIZE 48
31 #define WP256_DIGEST_SIZE 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
38 /* not defined in include/crypto/ */
39 #define SM3256_DIGEST_SIZE 32
41 extern const char *const hash_algo_name[HASH_ALGO__LAST];
42 extern const int hash_digest_size[HASH_ALGO__LAST];
44 #endif /* _CRYPTO_HASH_INFO_H */