-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsha256.h
54 lines (47 loc) · 1.16 KB
/
sha256.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
Original Work: https://github.com/Cathedrow/Cryptosuite
Modified By: https://github.com/TheTosters/Cryptosuite
Copied From: https://github.com/TheTosters/Cryptosuite/blob/014f43581eb5ba026adaa7e47d44eee46814d461/Sha/sha256.h
*/
#ifndef Sha256_h
#define Sha256_h
#include <inttypes.h>
#include "Print.h"
#define HASH_LENGTH 32
#define BLOCK_LENGTH 64
#ifdef ESP8266
#define WRITE_RET_TYPE size_t
#else
#define WRITE_RET_TYPE void
#endif
union _buffer {
uint8_t b[BLOCK_LENGTH];
uint32_t w[BLOCK_LENGTH/4];
};
union _state {
uint8_t b[HASH_LENGTH];
uint32_t w[HASH_LENGTH/4];
};
class Sha256Class : public Print
{
public:
void init(void);
void initHmac(const uint8_t* secret, int secretLength);
uint8_t* result(void);
uint8_t* resultHmac(void);
virtual WRITE_RET_TYPE write(uint8_t);
using Print::write;
private:
void pad();
void addUncounted(uint8_t data);
void hashBlock();
uint32_t ror32(uint32_t number, uint8_t bits);
_buffer buffer;
uint8_t bufferOffset;
_state state;
uint32_t byteCount;
uint8_t keyBuffer[BLOCK_LENGTH];
uint8_t innerHash[HASH_LENGTH];
};
extern Sha256Class Sha256;
#endif