VitaShell/sha1.h

37 lines
1.2 KiB
C
Raw Normal View History

2016-08-06 06:59:41 +00:00
/*********************************************************************
* Filename: sha1.h
2017-10-13 10:42:36 +00:00
* Author: Brad Conte (brad AT bradconte.com)
2016-08-06 06:59:41 +00:00
* Copyright:
* Disclaimer: This code is presented "as is" without any guarantees.
2017-10-13 10:42:36 +00:00
* Details: Defines the API for the corresponding SHA1 implementation.
2016-08-06 06:59:41 +00:00
*********************************************************************/
#ifndef SHA1_H
#define SHA1_H
/*************************** HEADER FILES ***************************/
#include <stddef.h>
#include <inttypes.h>
/****************************** MACROS ******************************/
2017-10-13 10:42:36 +00:00
#define SHA1_BLOCK_SIZE 20 // SHA1 outputs a 20 byte digest
2016-08-06 06:59:41 +00:00
/**************************** DATA TYPES ****************************/
2017-10-13 10:42:36 +00:00
typedef uint8_t BYTE; // 8-bit byte
typedef uint32_t WORD; // 32-bit word, change to "long" for 16-bit machines
2016-08-06 06:59:41 +00:00
typedef struct {
2017-10-13 10:42:36 +00:00
BYTE data[64];
WORD datalen;
unsigned long long bitlen;
WORD state[5];
WORD k[4];
2016-08-06 06:59:41 +00:00
} SHA1_CTX;
/*********************** FUNCTION DECLARATIONS **********************/
void sha1_init(SHA1_CTX *ctx);
void sha1_update(SHA1_CTX *ctx, const BYTE data[], size_t len);
void sha1_final(SHA1_CTX *ctx, BYTE hash[]);
#endif // SHA1_H