Project Alice
Loading...
Searching...
No Matches
SHA512.hpp
Go to the documentation of this file.
1
14#ifndef H_SHA512
15#define H_SHA512
16
17#include <string>
18#include <stdio.h>
19#include <string.h>
20#include <iostream>
21#include <iomanip>
22#include <cstdint>
23#include <sstream>
24
25namespace network {
26
27typedef unsigned long long uint64;
28
29// Constants
30unsigned int const SEQUENCE_LEN = (1024 / 64);
31size_t const HASH_LEN = 8;
32size_t const WORKING_VAR_LEN = 8;
33size_t const MESSAGE_SCHEDULE_LEN = 80;
34size_t const MESSAGE_BLOCK_SIZE = 1024;
35size_t const CHAR_LEN_BITS = 8;
36size_t const OUTPUT_LEN = 8;
37size_t const WORD_LEN = 8;
38
39class SHA512 {
40private:
41 typedef unsigned long long uint64;
42
43 const uint64 hPrime[8] = { 0x6a09e667f3bcc908ULL,
44 0xbb67ae8584caa73bULL,
45 0x3c6ef372fe94f82bULL,
46 0xa54ff53a5f1d36f1ULL,
47 0x510e527fade682d1ULL,
48 0x9b05688c2b3e6c1fULL,
49 0x1f83d9abfb41bd6bULL,
50 0x5be0cd19137e2179ULL
51 };
52
53 const uint64 m[80] = { 0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL, 0xb5c0fbcfec4d3b2fULL, 0xe9b5dba58189dbbcULL, 0x3956c25bf348b538ULL,
54 0x59f111f1b605d019ULL, 0x923f82a4af194f9bULL, 0xab1c5ed5da6d8118ULL, 0xd807aa98a3030242ULL, 0x12835b0145706fbeULL,
55 0x243185be4ee4b28cULL, 0x550c7dc3d5ffb4e2ULL, 0x72be5d74f27b896fULL, 0x80deb1fe3b1696b1ULL, 0x9bdc06a725c71235ULL,
56 0xc19bf174cf692694ULL, 0xe49b69c19ef14ad2ULL, 0xefbe4786384f25e3ULL, 0x0fc19dc68b8cd5b5ULL, 0x240ca1cc77ac9c65ULL,
57 0x2de92c6f592b0275ULL, 0x4a7484aa6ea6e483ULL, 0x5cb0a9dcbd41fbd4ULL, 0x76f988da831153b5ULL, 0x983e5152ee66dfabULL,
58 0xa831c66d2db43210ULL, 0xb00327c898fb213fULL, 0xbf597fc7beef0ee4ULL, 0xc6e00bf33da88fc2ULL, 0xd5a79147930aa725ULL,
59 0x06ca6351e003826fULL, 0x142929670a0e6e70ULL, 0x27b70a8546d22ffcULL, 0x2e1b21385c26c926ULL, 0x4d2c6dfc5ac42aedULL,
60 0x53380d139d95b3dfULL, 0x650a73548baf63deULL, 0x766a0abb3c77b2a8ULL, 0x81c2c92e47edaee6ULL, 0x92722c851482353bULL,
61 0xa2bfe8a14cf10364ULL, 0xa81a664bbc423001ULL, 0xc24b8b70d0f89791ULL, 0xc76c51a30654be30ULL, 0xd192e819d6ef5218ULL,
62 0xd69906245565a910ULL, 0xf40e35855771202aULL, 0x106aa07032bbd1b8ULL, 0x19a4c116b8d2d0c8ULL, 0x1e376c085141ab53ULL,
63 0x2748774cdf8eeb99ULL, 0x34b0bcb5e19b48a8ULL, 0x391c0cb3c5c95a63ULL, 0x4ed8aa4ae3418acbULL, 0x5b9cca4f7763e373ULL,
64 0x682e6ff3d6b2b8a3ULL, 0x748f82ee5defb2fcULL, 0x78a5636f43172f60ULL, 0x84c87814a1f0ab72ULL, 0x8cc702081a6439ecULL,
65 0x90befffa23631e28ULL, 0xa4506cebde82bde9ULL, 0xbef9a3f7b2c67915ULL, 0xc67178f2e372532bULL, 0xca273eceea26619cULL,
66 0xd186b8c721c0c207ULL, 0xeada7dd6cde0eb1eULL, 0xf57d4f7fee6ed178ULL, 0x06f067aa72176fbaULL, 0x0a637dc5a2c898a6ULL,
67 0x113f9804bef90daeULL, 0x1b710b35131c471bULL, 0x28db77f523047d84ULL, 0x32caab7b40c72493ULL, 0x3c9ebe0a15c9bebcULL,
68 0x431d67c49c100d4cULL, 0x4cc5d4becb3e42b6ULL, 0x597f299cfc657e2aULL, 0x5fcb6fab3ad6faecULL, 0x6c44198c4a475817ULL };
69
70 uint64** preprocess(const unsigned char* input, size_t& nBuffer);
71 void appendLen(size_t l, uint64& lo, uint64& hi);
72 void process(uint64** buffer, size_t nBuffer, uint64* h);
73 std::string digest(uint64* h);
74 void freeBuffer(uint64** buffer, size_t nBuffer);
75
76 // Operations
77#define Ch(x,y,z) ((x&y)^(~x&z))
78#define Maj(x,y,z) ((x&y)^(x&z)^(y&z))
79#define RotR(x, n) ((x>>n)|(x<<((sizeof(x)<<3)-n)))
80#define Sig0(x) ((RotR(x, 28))^(RotR(x,34))^(RotR(x, 39)))
81#define Sig1(x) ((RotR(x, 14))^(RotR(x,18))^(RotR(x, 41)))
82#define sig0(x) (RotR(x, 1)^RotR(x,8)^(x>>7))
83#define sig1(x) (RotR(x, 19)^RotR(x,61)^(x>>6))
84
85public:
86 std::string hash(const std::string input);
87
88 SHA512();
89 ~SHA512();
90};
91
92
97
102
107std::string SHA512::hash(const std::string input) {
108 size_t nBuffer; // amount of message blocks
109 uint64** buffer; // message block buffers (each 1024-bit = 16 64-bit words)
110 uint64* h = new uint64[HASH_LEN]; // buffer holding the message digest (512-bit = 8 64-bit words)
111
112 buffer = preprocess((unsigned char*)input.c_str(), nBuffer);
113 process(buffer, nBuffer, h);
114
115 freeBuffer(buffer, nBuffer);
116 return digest(h);
117}
118
124uint64** SHA512::preprocess(const unsigned char* input, size_t& nBuffer) {
125 // Padding: input || 1 || 0*k || l (in 128-bit representation)
126 size_t mLen = strlen((const char*)input);
127 size_t l = mLen * CHAR_LEN_BITS; // length of input in bits
128 size_t kp = (896 - 1 - l) % MESSAGE_BLOCK_SIZE; // length of zero bit padding (l + 1 + k = 896 mod 1024)
129 nBuffer = (l + 1 + kp + 128) / MESSAGE_BLOCK_SIZE;
130
131 uint64** buffer = new uint64 * [nBuffer];
132
133 for(size_t i = 0; i < nBuffer; i++) {
134 buffer[i] = new uint64[SEQUENCE_LEN];
135 }
136
137 uint64 in;
138 size_t index;
139
140 // Either copy existing message, add 1 bit or add 0 bit
141 for(size_t i = 0; i < nBuffer; i++) {
142 for(size_t j = 0; j < SEQUENCE_LEN; j++) {
143 in = 0x0ULL;
144 for(size_t k = 0; k < WORD_LEN; k++) {
145 index = i * 128 + j * 8 + k;
146 if(index < mLen) {
147 in = in << 8 | (uint64)input[index];
148 } else if(index == mLen) {
149 in = in << 8 | 0x80ULL;
150 } else {
151 in = in << 8 | 0x0ULL;
152 }
153 }
154 buffer[i][j] = in;
155 }
156 }
157
158 // Append the length to the last two 64-bit blocks
159 appendLen(l, buffer[nBuffer - 1][SEQUENCE_LEN - 1], buffer[nBuffer - 1][SEQUENCE_LEN - 2]);
160 return buffer;
161}
162
169void SHA512::process(uint64** buffer, size_t nBuffer, uint64* h) {
172
173 memcpy(h, hPrime, WORKING_VAR_LEN * sizeof(uint64));
174
175 for(size_t i = 0; i < nBuffer; i++) {
176 // copy over to message schedule
177 memcpy(w, buffer[i], SEQUENCE_LEN * sizeof(uint64));
178
179 // Prepare the message schedule
180 for(size_t j = 16; j < MESSAGE_SCHEDULE_LEN; j++) {
181 w[j] = w[j - 16] + sig0(w[j - 15]) + w[j - 7] + sig1(w[j - 2]);
182 }
183 // Initialize the working variables
184 memcpy(s, h, WORKING_VAR_LEN * sizeof(uint64));
185
186 // Compression
187 for(size_t j = 0; j < MESSAGE_SCHEDULE_LEN; j++) {
188 uint64 temp1 = s[7] + Sig1(s[4]) + Ch(s[4], s[5], s[6]) + m[j] + w[j];
189 uint64 temp2 = Sig0(s[0]) + Maj(s[0], s[1], s[2]);
190
191 s[7] = s[6];
192 s[6] = s[5];
193 s[5] = s[4];
194 s[4] = s[3] + temp1;
195 s[3] = s[2];
196 s[2] = s[1];
197 s[1] = s[0];
198 s[0] = temp1 + temp2;
199 }
200
201 // Compute the intermediate hash values
202 for(size_t j = 0; j < WORKING_VAR_LEN; j++) {
203 h[j] += s[j];
204 }
205 }
206
207}
208
215void SHA512::appendLen(size_t l, uint64& lo, uint64& hi) {
216 lo = l;
217 hi = 0x00ULL;
218}
219
224std::string SHA512::digest(uint64* h) {
225 std::stringstream ss;
226 for(size_t i = 0; i < OUTPUT_LEN; i++) {
227 ss << std::hex << std::setw(16) << std::setfill('0') << h[i];
228 }
229 delete[] h;
230 return ss.str();
231}
232
238void SHA512::freeBuffer(uint64** buffer, size_t nBuffer) {
239 for(size_t i = 0; i < nBuffer; i++) {
240 delete[] buffer[i];
241 }
242
243 delete[] buffer;
244}
245
246
247}
248
249#endif
#define Sig1(x)
Definition: SHA512.hpp:81
#define sig1(x)
Definition: SHA512.hpp:83
#define Maj(x, y, z)
Definition: SHA512.hpp:78
#define sig0(x)
Definition: SHA512.hpp:82
#define Ch(x, y, z)
Definition: SHA512.hpp:77
#define Sig0(x)
Definition: SHA512.hpp:80
std::string hash(const std::string input)
Definition: SHA512.hpp:107
size_t const OUTPUT_LEN
Definition: SHA512.hpp:36
size_t const MESSAGE_BLOCK_SIZE
Definition: SHA512.hpp:34
size_t const CHAR_LEN_BITS
Definition: SHA512.hpp:35
unsigned int const SEQUENCE_LEN
Definition: SHA512.hpp:30
unsigned long long uint64
Definition: SHA512.hpp:27
size_t const WORKING_VAR_LEN
Definition: SHA512.hpp:32
size_t const HASH_LEN
Definition: SHA512.hpp:31
size_t const WORD_LEN
Definition: SHA512.hpp:37
size_t const MESSAGE_SCHEDULE_LEN
Definition: SHA512.hpp:33