fix typo
This commit is contained in:
parent
6faf3cb689
commit
c8b9436ee1
2 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
import "EMBED/u32_to_bits" as to_bits
|
||||
import "EMBED/u32_from_bits" as from_bits
|
||||
|
||||
def rotr32<N>(u32 e) -> u32:
|
||||
def rotr32<N>(u32 x) -> u32:
|
||||
return (x >> N) ^ (x << (32 - N))
|
||||
|
||||
def blake2s_iv() -> (u32[8]):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import "./IVconstants.zok"
|
||||
|
||||
def rotr32<N>(u32 e) -> u32:
|
||||
def rotr32<N>(u32 x) -> u32:
|
||||
return (x >> N) ^ (x << (32 - N))
|
||||
|
||||
def extend(u32[64] w, u32 i) -> u32:
|
||||
|
|
Loading…
Reference in a new issue