Skip to content

Commit

Permalink
fix: RPO Falcon build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbinth committed Oct 10, 2023
1 parent 1a00c70 commit 7f3d4b8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions src/dsa/rpo_falcon512/falcon_c/rpo.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7f3d4b8

Please sign in to comment.