diff options
| author | Dmitry Kasatkin <d.kasatkin@samsung.com> | 2013-05-06 08:40:01 -0400 |
|---|---|---|
| committer | Mimi Zohar <zohar@linux.vnet.ibm.com> | 2013-10-25 17:14:03 -0400 |
| commit | ee08997fee16f10be23c9748d609dbdf3baab8e4 (patch) | |
| tree | 30c2d08bc5e5048558f7b8950a268409360c57e5 /include/uapi | |
| parent | 08de59eb144d7c41351a467442f898d720f0f15f (diff) | |
crypto: provide single place for hash algo information
This patch provides a single place for information about hash algorithms,
such as hash sizes and kernel driver names, which will be used by IMA
and the public key code.
Changelog:
- Fix sparse and checkpatch warnings
- Move hash algo enums to uapi for userspace signing functions.
Signed-off-by: Dmitry Kasatkin <d.kasatkin@samsung.com>
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/linux/hash_info.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/include/uapi/linux/hash_info.h b/include/uapi/linux/hash_info.h new file mode 100644 index 000000000000..ca18c45f8304 --- /dev/null +++ b/include/uapi/linux/hash_info.h | |||
| @@ -0,0 +1,37 @@ | |||
| 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 _UAPI_LINUX_HASH_INFO_H | ||
| 14 | #define _UAPI_LINUX_HASH_INFO_H | ||
| 15 | |||
| 16 | enum hash_algo { | ||
| 17 | HASH_ALGO_MD4, | ||
| 18 | HASH_ALGO_MD5, | ||
| 19 | HASH_ALGO_SHA1, | ||
| 20 | HASH_ALGO_RIPE_MD_160, | ||
| 21 | HASH_ALGO_SHA256, | ||
| 22 | HASH_ALGO_SHA384, | ||
| 23 | HASH_ALGO_SHA512, | ||
| 24 | HASH_ALGO_SHA224, | ||
| 25 | HASH_ALGO_RIPE_MD_128, | ||
| 26 | HASH_ALGO_RIPE_MD_256, | ||
| 27 | HASH_ALGO_RIPE_MD_320, | ||
| 28 | HASH_ALGO_WP_256, | ||
| 29 | HASH_ALGO_WP_384, | ||
| 30 | HASH_ALGO_WP_512, | ||
| 31 | HASH_ALGO_TGR_128, | ||
| 32 | HASH_ALGO_TGR_160, | ||
| 33 | HASH_ALGO_TGR_192, | ||
| 34 | HASH_ALGO__LAST | ||
| 35 | }; | ||
| 36 | |||
| 37 | #endif /* _UAPI_LINUX_HASH_INFO_H */ | ||
