-
Notifications
You must be signed in to change notification settings - Fork 262
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
Showing
8 changed files
with
220 additions
and
12 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
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
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
use crate::consts::K32; | ||
|
||
#[cfg(target_arch = "riscv32")] | ||
use core::arch::riscv32::*; | ||
#[cfg(target_arch = "riscv64")] | ||
use core::arch::riscv64::*; | ||
|
||
#[cfg(not(target_feature = "zknh"))] | ||
compile_error!("riscv-zknh backend requires enabled zknh target feature"); | ||
|
||
#[inline(always)] | ||
fn ch(x: u32, y: u32, z: u32) -> u32 { | ||
(x & y) ^ (!x & z) | ||
} | ||
|
||
#[inline(always)] | ||
fn maj(x: u32, y: u32, z: u32) -> u32 { | ||
(x & y) ^ (x & z) ^ (y & z) | ||
} | ||
|
||
#[inline(always)] | ||
fn round(state: &mut [u32; 8], block: &[u32; 16], r: usize) { | ||
let n = K32.len() - r; | ||
let a = (n + 0) % 8; | ||
let b = (n + 1) % 8; | ||
let c = (n + 2) % 8; | ||
let d = (n + 3) % 8; | ||
let e = (n + 4) % 8; | ||
let f = (n + 5) % 8; | ||
let g = (n + 6) % 8; | ||
let h = (n + 7) % 8; | ||
|
||
state[h] = state[h] | ||
.wrapping_add(unsafe { sha256sum1(state[e]) }) | ||
.wrapping_add(ch(state[e], state[f], state[g])) | ||
.wrapping_add(K32[r]) | ||
.wrapping_add(block[r % 16]); | ||
state[d] = state[d].wrapping_add(state[h]); | ||
state[h] = state[h] | ||
.wrapping_add(unsafe { sha256sum0(state[a]) }) | ||
.wrapping_add(maj(state[a], state[b], state[c])) | ||
} | ||
|
||
#[inline(always)] | ||
fn round_schedule(state: &mut [u32; 8], block: &mut [u32; 16], r: usize) { | ||
round(state, block, r); | ||
|
||
block[r % 16] = block[r % 16] | ||
.wrapping_add(unsafe { sha256sig1(block[(r + 14) % 16]) }) | ||
.wrapping_add(block[(r + 9) % 16]) | ||
.wrapping_add(unsafe { sha256sig0(block[(r + 1) % 16]) }); | ||
} | ||
|
||
#[inline(always)] | ||
fn compress_block(state: &mut [u32; 8], mut block: [u32; 16]) { | ||
let s = &mut state.clone(); | ||
let b = &mut block; | ||
|
||
for i in 0..48 { | ||
round_schedule(s, b, i); | ||
} | ||
for i in 48..64 { | ||
round(s, b, i); | ||
} | ||
|
||
for i in 0..8 { | ||
state[i] = state[i].wrapping_add(s[i]); | ||
} | ||
} | ||
|
||
pub fn compress(state: &mut [u32; 8], blocks: &[[u8; 64]]) { | ||
for block_u8 in blocks { | ||
let mut block = [0u32; 16]; | ||
for (dst, src) in block.iter_mut().zip(block_u8.chunks_exact(4)) { | ||
*dst = u32::from_be_bytes(src.try_into().unwrap()); | ||
} | ||
compress_block(state, block); | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,107 @@ | ||
use crate::consts::K64; | ||
|
||
#[cfg(target_arch = "riscv32")] | ||
use core::arch::riscv32::*; | ||
#[cfg(target_arch = "riscv64")] | ||
use core::arch::riscv64::*; | ||
|
||
#[cfg(not(target_feature = "zknh"))] | ||
compile_error!("riscv-zknh backend requires enabled zknh target feature"); | ||
|
||
#[cfg(target_arch = "riscv32")] | ||
unsafe fn sha512sum0(x: u64) -> u64 { | ||
let a = sha512sum0r((x >> 32) as u32, x as u32); | ||
let b = sha512sum0r(x as u32, (x >> 32) as u32); | ||
((a as u64) << 32) | (b as u64) | ||
} | ||
|
||
#[cfg(target_arch = "riscv32")] | ||
unsafe fn sha512sum1(x: u64) -> u64 { | ||
let a = sha512sum1r((x >> 32) as u32, x as u32); | ||
let b = sha512sum1r(x as u32, (x >> 32) as u32); | ||
((a as u64) << 32) | (b as u64) | ||
} | ||
|
||
#[cfg(target_arch = "riscv32")] | ||
unsafe fn sha512sig0(x: u64) -> u64 { | ||
let a = sha512sig0h((x >> 32) as u32, x as u32); | ||
let b = sha512sig0l(x as u32, (x >> 32) as u32); | ||
((a as u64) << 32) | (b as u64) | ||
} | ||
|
||
#[cfg(target_arch = "riscv32")] | ||
unsafe fn sha512sig1(x: u64) -> u64 { | ||
let a = sha512sig1h((x >> 32) as u32, x as u32); | ||
let b = sha512sig1l(x as u32, (x >> 32) as u32); | ||
((a as u64) << 32) | (b as u64) | ||
} | ||
|
||
#[inline(always)] | ||
fn ch(x: u64, y: u64, z: u64) -> u64 { | ||
(x & y) ^ (!x & z) | ||
} | ||
|
||
#[inline(always)] | ||
fn maj(x: u64, y: u64, z: u64) -> u64 { | ||
(x & y) ^ (x & z) ^ (y & z) | ||
} | ||
|
||
#[inline(always)] | ||
fn round(state: &mut [u64; 8], block: &[u64; 16], r: usize) { | ||
let n = K64.len() - r; | ||
let a = (n + 0) % 8; | ||
let b = (n + 1) % 8; | ||
let c = (n + 2) % 8; | ||
let d = (n + 3) % 8; | ||
let e = (n + 4) % 8; | ||
let f = (n + 5) % 8; | ||
let g = (n + 6) % 8; | ||
let h = (n + 7) % 8; | ||
|
||
state[h] = state[h] | ||
.wrapping_add(unsafe { sha512sum1(state[e]) }) | ||
.wrapping_add(ch(state[e], state[f], state[g])) | ||
.wrapping_add(K64[r]) | ||
.wrapping_add(block[r % 16]); | ||
state[d] = state[d].wrapping_add(state[h]); | ||
state[h] = state[h] | ||
.wrapping_add(unsafe { sha512sum0(state[a]) }) | ||
.wrapping_add(maj(state[a], state[b], state[c])) | ||
} | ||
|
||
#[inline(always)] | ||
fn round_schedule(state: &mut [u64; 8], block: &mut [u64; 16], r: usize) { | ||
round(state, block, r); | ||
|
||
block[r % 16] = block[r % 16] | ||
.wrapping_add(unsafe { sha512sig1(block[(r + 14) % 16]) }) | ||
.wrapping_add(block[(r + 9) % 16]) | ||
.wrapping_add(unsafe { sha512sig0(block[(r + 1) % 16]) }); | ||
} | ||
|
||
#[inline(always)] | ||
fn compress_block(state: &mut [u64; 8], mut block: [u64; 16]) { | ||
let s = &mut state.clone(); | ||
let b = &mut block; | ||
|
||
for i in 0..64 { | ||
round_schedule(s, b, i); | ||
} | ||
for i in 64..80 { | ||
round(s, b, i); | ||
} | ||
|
||
for i in 0..8 { | ||
state[i] = state[i].wrapping_add(s[i]); | ||
} | ||
} | ||
|
||
pub fn compress(state: &mut [u64; 8], blocks: &[[u8; 128]]) { | ||
for block_u8 in blocks { | ||
let mut block = [0u64; 16]; | ||
for (dst, src) in block.iter_mut().zip(block_u8.chunks_exact(8)) { | ||
*dst = u64::from_be_bytes(src.try_into().unwrap()); | ||
} | ||
compress_block(state, block); | ||
} | ||
} |