]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/cryptohash.h
rfkill: allocate static minor
[mirror_ubuntu-bionic-kernel.git] / include / linux / cryptohash.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __CRYPTOHASH_H
3#define __CRYPTOHASH_H
4
3248340d
RV
5#include <uapi/linux/types.h>
6
1da177e4 7#define SHA_DIGEST_WORDS 5
da5c78c8 8#define SHA_MESSAGE_BYTES (512 /*bits*/ / 8)
1eb19a12 9#define SHA_WORKSPACE_WORDS 16
1da177e4
LT
10
11void sha_init(__u32 *buf);
12void sha_transform(__u32 *digest, const char *data, __u32 *W);
13
1da177e4 14#endif