]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libcrypto/include/private/sha1_linux.h
f3a183eeead1f718fead0443eddec0af5a092dc5
[l4.git] / l4 / pkg / libcrypto / include / private / sha1_linux.h
1 /*
2  * \brief   Private header Linux SHA1 functions.
3  * \date    2006-07-26
4  * \author  Carsten Weinhold <weinhold@os.inf.tu-dresden.de>
5  */
6 /*
7  * Copyright (C) 2006  Carsten Weinhold <weinhold@os.inf.tu-dresden.de>
8  * Technische Universitaet Dresden, Operating Systems Research Group
9  *
10  * This file is part of the libcrypto package, which is distributed under
11  * the  terms  of the  GNU General Public Licence 2.  Please see the
12  * COPYING file for details.
13  */
14
15 #ifndef __CRYPTO_SHA1_LINUX_H
16 #define __CRYPTO_SHA1_LINUX_H
17
18 #include "linux.h"
19
20 struct sha1_ctx {
21         u64 count;
22         u32 state[5];
23         u8 buffer[64];
24 };
25
26 #endif /* __CRYPTO_SHA1_LINUX_H */
27