-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf8d66a
commit 83f7a94
Showing
2 changed files
with
125 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,134 +1,135 @@ | ||
function transform!(context::T) where {T<:Union{SHA2_224_CTX,SHA2_256_CTX}} | ||
pbuf = buffer_pointer(context) | ||
# Initialize registers with the previous intermediate values (our state) | ||
a = context.state[1] | ||
b = context.state[2] | ||
c = context.state[3] | ||
d = context.state[4] | ||
e = context.state[5] | ||
f = context.state[6] | ||
g = context.state[7] | ||
h = context.state[8] | ||
|
||
# Run initial rounds | ||
for j = 1:16 | ||
@inbounds begin | ||
# We bitswap every input byte | ||
v = bswap(unsafe_load(pbuf, j)) | ||
unsafe_store!(pbuf, v, j) | ||
|
||
# Apply the SHA-256 compression function to update a..h | ||
T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + v | ||
T2 = Sigma0_256(a) + Maj(a, b, c) | ||
h = g | ||
g = f | ||
f = e | ||
e = UInt32(d + T1) | ||
d = c | ||
c = b | ||
b = a | ||
a = UInt32(T1 + T2) | ||
end | ||
macro R1_16(j, T) | ||
|
||
ww = (:a, :b, :c, :d, :e, :f, :g, :h) | ||
|
||
a = ww[((81 - j) % 8) + 1] | ||
b = ww[((82 - j) % 8) + 1] | ||
c = ww[((83 - j) % 8) + 1] | ||
d = ww[((84 - j) % 8) + 1] | ||
e = ww[((85 - j) % 8) + 1] | ||
f = ww[((86 - j) % 8) + 1] | ||
g = ww[((87 - j) % 8) + 1] | ||
h = ww[((88 - j) % 8) + 1] | ||
|
||
if T == 512 | ||
Sigma0 = :Sigma0_512 | ||
Sigma1 = :Sigma1_512 | ||
K = :K512 | ||
elseif T == 256 | ||
Sigma0 = :Sigma0_256 | ||
Sigma1 = :Sigma1_256 | ||
K = :K256 | ||
end | ||
|
||
for j = 17:64 | ||
@inbounds begin | ||
# Implicit message block expansion: | ||
s0 = unsafe_load(pbuf, mod1(j + 1, 16)) | ||
s0 = sigma0_256(s0) | ||
s1 = unsafe_load(pbuf, mod1(j + 14, 16)) | ||
s1 = sigma1_256(s1) | ||
|
||
# Apply the SHA-256 compression function to update a..h | ||
v = unsafe_load(pbuf, mod1(j, 16)) + s1 + unsafe_load(pbuf, mod1(j + 9, 16)) + s0 | ||
unsafe_store!(pbuf, v, mod1(j, 16)) | ||
T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + v | ||
T2 = Sigma0_256(a) + Maj(a, b, c) | ||
h = g | ||
g = f | ||
f = e | ||
e = UInt32(d + T1) | ||
d = c | ||
c = b | ||
b = a | ||
a = UInt32(T1 + T2) | ||
end | ||
return esc(quote | ||
# We byteswap every input byte | ||
v = bswap(unsafe_load(pbuf, $j)) | ||
unsafe_store!(pbuf, v, $j) | ||
|
||
# Apply the SHA-256 compression function to update a..h | ||
T1 = $h + $Sigma1($e) + Ch($e, $f, $g) + $K[$j] + v | ||
$h = $Sigma0($a) + Maj($a, $b, $c) | ||
$d += T1 | ||
$h += T1 | ||
end) | ||
end | ||
|
||
macro R17_80(j, T) | ||
|
||
ww = (:a, :b, :c, :d, :e, :f, :g, :h) | ||
|
||
a = ww[((81 - j) % 8) + 1] | ||
b = ww[((82 - j) % 8) + 1] | ||
c = ww[((83 - j) % 8) + 1] | ||
d = ww[((84 - j) % 8) + 1] | ||
e = ww[((85 - j) % 8) + 1] | ||
f = ww[((86 - j) % 8) + 1] | ||
g = ww[((87 - j) % 8) + 1] | ||
h = ww[((88 - j) % 8) + 1] | ||
|
||
if T == 512 | ||
Sigma0 = :Sigma0_512 | ||
Sigma1 = :Sigma1_512 | ||
sigma0 = :sigma0_512 | ||
sigma1 = :sigma1_512 | ||
K = :K512 | ||
elseif T == 256 | ||
Sigma0 = :Sigma0_256 | ||
Sigma1 = :Sigma1_256 | ||
sigma0 = :sigma0_256 | ||
sigma1 = :sigma1_256 | ||
K = :K256 | ||
end | ||
|
||
# Compute the current intermediate hash value | ||
context.state[1] += a | ||
context.state[2] += b | ||
context.state[3] += c | ||
context.state[4] += d | ||
context.state[5] += e | ||
context.state[6] += f | ||
context.state[7] += g | ||
context.state[8] += h | ||
return esc(quote | ||
s0 = unsafe_load(pbuf, mod1($j + 1, 16)) | ||
s0 = $sigma0(s0) | ||
s1 = unsafe_load(pbuf, mod1($j + 14, 16)) | ||
s1 = $sigma1(s1) | ||
|
||
# Apply the SHA-256 compression function to update a..h | ||
v = unsafe_load(pbuf, mod1($j, 16)) + s1 + unsafe_load(pbuf, mod1($j + 9, 16)) + s0 | ||
unsafe_store!(pbuf, v, mod1($j, 16)) | ||
T1 = $h + $Sigma1($e) + Ch($e, $f, $g) + $K[$j] + v | ||
$h = $Sigma0($a) + Maj($a, $b, $c) | ||
$d += T1 | ||
$h += T1 | ||
end) | ||
end | ||
|
||
macro R_init(T) | ||
expr = :() | ||
for i in 1:16 | ||
expr = :($expr; @R1_16($i, $T)) | ||
end | ||
return esc(expr) | ||
end | ||
|
||
function transform!(context::Union{SHA2_384_CTX,SHA2_512_CTX}) | ||
pbuf = buffer_pointer(context) | ||
# Initialize registers with the prev. intermediate value | ||
a = context.state[1] | ||
b = context.state[2] | ||
c = context.state[3] | ||
d = context.state[4] | ||
e = context.state[5] | ||
f = context.state[6] | ||
g = context.state[7] | ||
h = context.state[8] | ||
macro R_end(T) | ||
|
||
for j = 1:16 | ||
@inbounds begin | ||
v = bswap(unsafe_load(pbuf, j)) | ||
unsafe_store!(pbuf, v, j) | ||
|
||
# Apply the SHA-512 compression function to update a..h | ||
T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + v | ||
T2 = Sigma0_512(a) + Maj(a, b, c) | ||
h = g | ||
g = f | ||
f = e | ||
e = d + T1 | ||
d = c | ||
c = b | ||
b = a | ||
a = T1 + T2 | ||
end | ||
if T == 256 | ||
n_rounds = 64 | ||
elseif T == 512 | ||
n_rounds = 80 | ||
end | ||
|
||
expr = :() | ||
for i in 17:n_rounds | ||
expr = :($expr; @R17_80($i, $T)) | ||
end | ||
|
||
return esc(expr) | ||
end | ||
|
||
@generated function transform!(context::Union{SHA2_224_CTX, SHA2_256_CTX, | ||
SHA2_384_CTX, SHA2_512_CTX}) | ||
if context <: Union{SHA2_224_CTX,SHA2_256_CTX} | ||
T = 256 | ||
elseif context <: Union{SHA2_384_CTX,SHA2_512_CTX} | ||
T = 512 | ||
end | ||
|
||
for j = 17:80 | ||
return quote | ||
pbuf = buffer_pointer(context) | ||
# Initialize registers with the previous intermediate values (our state) | ||
a, b, c, d, e, f, g, h = context.state | ||
|
||
# Initial Rounds | ||
@R_init($T) | ||
|
||
# Other Rounds | ||
@R_end($T) | ||
|
||
# Compute the current intermediate hash value | ||
@inbounds begin | ||
# Implicit message block expansion: | ||
s0 = unsafe_load(pbuf, mod1(j + 1, 16)) | ||
s0 = sigma0_512(s0) | ||
s1 = unsafe_load(pbuf, mod1(j + 14, 16)) | ||
s1 = sigma1_512(s1) | ||
|
||
# Apply the SHA-512 compression function to update a..h | ||
v = unsafe_load(pbuf, mod1(j, 16)) + s1 + unsafe_load(pbuf, mod1(j + 9, 16)) + s0 | ||
unsafe_store!(pbuf, v, mod1(j, 16)) | ||
T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + v | ||
T2 = Sigma0_512(a) + Maj(a, b, c) | ||
h = g | ||
g = f | ||
f = e | ||
e = d + T1 | ||
d = c | ||
c = b | ||
b = a | ||
a = T1 + T2 | ||
context.state[1] += a | ||
context.state[2] += b | ||
context.state[3] += c | ||
context.state[4] += d | ||
context.state[5] += e | ||
context.state[6] += f | ||
context.state[7] += g | ||
context.state[8] += h | ||
end | ||
end | ||
|
||
# Compute the current intermediate hash value | ||
context.state[1] += a | ||
context.state[2] += b | ||
context.state[3] += c | ||
context.state[4] += d | ||
context.state[5] += e | ||
context.state[6] += f | ||
context.state[7] += g | ||
context.state[8] += h | ||
end |