]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/sha1.h
ARM: zynq: Add MIO detection code
[people/ms/u-boot.git] / include / sha1.h
CommitLineData
566a494f
HS
1/**
2 * \file sha1.h
3 * based from http://xyssl.org/code/source/sha1/
4 * FIPS-180-1 compliant SHA-1 implementation
5 *
6 * Copyright (C) 2003-2006 Christophe Devine
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License, version 2.1 as published by the Free Software Foundation.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
4ef218f6 20 * MA 02110-1301 USA
566a494f
HS
21 */
22/*
23 * The SHA-1 standard was published by NIST in 1993.
24 *
25 * http://www.itl.nist.gov/fipspubs/fip180-1.htm
26 */
27#ifndef _SHA1_H
28#define _SHA1_H
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34#define SHA1_SUM_POS -0x20
35#define SHA1_SUM_LEN 20
36
37/**
4ef218f6 38 * \brief SHA-1 context structure
566a494f
HS
39 */
40typedef struct
41{
4ef218f6
WD
42 unsigned long total[2]; /*!< number of bytes processed */
43 unsigned long state[5]; /*!< intermediate digest state */
44 unsigned char buffer[64]; /*!< data block being processed */
566a494f
HS
45}
46sha1_context;
47
48/**
4ef218f6 49 * \brief SHA-1 context setup
566a494f 50 *
4ef218f6 51 * \param ctx SHA-1 context to be initialized
566a494f
HS
52 */
53void sha1_starts( sha1_context *ctx );
54
55/**
4ef218f6 56 * \brief SHA-1 process buffer
566a494f 57 *
4ef218f6 58 * \param ctx SHA-1 context
566a494f 59 * \param input buffer holding the data
4ef218f6 60 * \param ilen length of the input data
566a494f 61 */
a7d1d765
SG
62void sha1_update(sha1_context *ctx, const unsigned char *input,
63 unsigned int ilen);
566a494f
HS
64
65/**
4ef218f6 66 * \brief SHA-1 final digest
566a494f 67 *
4ef218f6 68 * \param ctx SHA-1 context
566a494f
HS
69 * \param output SHA-1 checksum result
70 */
71void sha1_finish( sha1_context *ctx, unsigned char output[20] );
72
73/**
4ef218f6 74 * \brief Output = SHA-1( input buffer )
566a494f
HS
75 *
76 * \param input buffer holding the data
4ef218f6 77 * \param ilen length of the input data
566a494f
HS
78 * \param output SHA-1 checksum result
79 */
a7d1d765
SG
80void sha1_csum(const unsigned char *input, unsigned int ilen,
81 unsigned char *output);
566a494f 82
215b01bb
BS
83/**
84 * \brief Output = SHA-1( input buffer ), with watchdog triggering
85 *
86 * \param input buffer holding the data
87 * \param ilen length of the input data
88 * \param output SHA-1 checksum result
89 * \param chunk_sz watchdog triggering period (in bytes of input processed)
90 */
a7d1d765
SG
91void sha1_csum_wd(const unsigned char *input, unsigned int ilen,
92 unsigned char *output, unsigned int chunk_sz);
566a494f
HS
93
94/**
4ef218f6 95 * \brief Output = HMAC-SHA-1( input buffer, hmac key )
566a494f 96 *
4ef218f6 97 * \param key HMAC secret key
566a494f
HS
98 * \param keylen length of the HMAC key
99 * \param input buffer holding the data
4ef218f6 100 * \param ilen length of the input data
566a494f
HS
101 * \param output HMAC-SHA-1 result
102 */
a7d1d765
SG
103void sha1_hmac(const unsigned char *key, int keylen,
104 const unsigned char *input, unsigned int ilen,
105 unsigned char *output);
566a494f
HS
106
107/**
4ef218f6 108 * \brief Checkup routine
566a494f 109 *
4ef218f6 110 * \return 0 if successful, or 1 if the test failed
566a494f
HS
111 */
112int sha1_self_test( void );
113
114#ifdef __cplusplus
115}
116#endif
117
118#endif /* sha1.h */