Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 790 Bytes

sha1.h

File metadata and controls

30 lines (22 loc) · 790 Bytes
 
Dec 18, 2013
Dec 18, 2013
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* $OpenBSD: sha1.h,v 1.5 2007/09/10 22:19:42 henric Exp $ */
/*
* SHA-1 in C
* By Steve Reid <steve@edmweb.com>
* 100% Public Domain
*/
#ifndef _SHA1_H_
#define _SHA1_H_
#define SHA1_BLOCK_LENGTH 64
#define SHA1_DIGEST_LENGTH 20
#include <stdint.h>
typedef struct {
Jun 18, 2017
Jun 18, 2017
18
19
20
uint32_t state[5];
uint64_t count;
uint8_t buffer[SHA1_BLOCK_LENGTH];
Dec 18, 2013
Dec 18, 2013
21
22
23
} SHA1_CTX;
void SHA1Init(SHA1_CTX * context);
Jun 18, 2017
Jun 18, 2017
24
25
26
void SHA1Transform(uint32_t state[5], const uint8_t buffer[SHA1_BLOCK_LENGTH]);
void SHA1Update(SHA1_CTX *context, const uint8_t *data, const uint32_t len);
void SHA1Final(uint8_t digest[SHA1_DIGEST_LENGTH], SHA1_CTX *context);
Dec 18, 2013
Dec 18, 2013
27
Jun 18, 2017
Jun 18, 2017
28
29
void SHA1Hmac(const uint8_t *key, const uint32_t keylen, const uint8_t *msg, const uint32_t msglen, uint8_t digest[SHA1_DIGEST_LENGTH]);
Dec 18, 2013
Dec 18, 2013
30
#endif /* _SHA1_H_ */