fix: RPO Falcon build on Windows
This commit is contained in:
parent
1a00c7035f
commit
7f3d4b8966
3 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
## 0.7.1 (2023-10-10)
|
||||
|
||||
* Fixed RPO Falcon signature build on Windows.
|
||||
|
||||
## 0.7.0 (2023-10-05)
|
||||
|
||||
* Replaced `MerklePathSet` with `PartialMerkleTree` (#165).
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
[package]
|
||||
name = "miden-crypto"
|
||||
version = "0.7.0"
|
||||
version = "0.7.1"
|
||||
description = "Miden Cryptographic primitives"
|
||||
authors = ["miden contributors"]
|
||||
readme = "README.md"
|
||||
license = "MIT"
|
||||
repository = "https://github.com/0xPolygonMiden/crypto"
|
||||
documentation = "https://docs.rs/miden-crypto/0.7.0"
|
||||
documentation = "https://docs.rs/miden-crypto/0.7.1"
|
||||
categories = ["cryptography", "no-std"]
|
||||
keywords = ["miden", "crypto", "hash", "merkle"]
|
||||
edition = "2021"
|
||||
|
|
|
@ -79,8 +79,8 @@ static uint64_t mult_mod_p(uint64_t x, uint64_t y)
|
|||
* RPO128 Permutation
|
||||
*/
|
||||
|
||||
static const uint64_t STATE_WIDTH = 12;
|
||||
static const uint64_t NUM_ROUNDS = 7;
|
||||
#define STATE_WIDTH 12
|
||||
#define NUM_ROUNDS 7
|
||||
|
||||
/*
|
||||
* MDS matrix
|
||||
|
|
Loading…
Add table
Reference in a new issue