Browse Source

fix: RPO Falcon build on Windows

al-gkr-basic-workflow v0.7.1
Bobbin Threadbare 1 year ago
parent
commit
7f3d4b8966
3 changed files with 8 additions and 4 deletions
  1. +4
    -0
      CHANGELOG.md
  2. +2
    -2
      Cargo.toml
  3. +2
    -2
      src/dsa/rpo_falcon512/falcon_c/rpo.c

+ 4
- 0
CHANGELOG.md

@ -1,3 +1,7 @@
## 0.7.1 (2023-10-10)
* Fixed RPO Falcon signature build on Windows.
## 0.7.0 (2023-10-05) ## 0.7.0 (2023-10-05)
* Replaced `MerklePathSet` with `PartialMerkleTree` (#165). * Replaced `MerklePathSet` with `PartialMerkleTree` (#165).

+ 2
- 2
Cargo.toml

@ -1,12 +1,12 @@
[package] [package]
name = "miden-crypto" name = "miden-crypto"
version = "0.7.0"
version = "0.7.1"
description = "Miden Cryptographic primitives" description = "Miden Cryptographic primitives"
authors = ["miden contributors"] authors = ["miden contributors"]
readme = "README.md" readme = "README.md"
license = "MIT" license = "MIT"
repository = "https://github.com/0xPolygonMiden/crypto" 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"] categories = ["cryptography", "no-std"]
keywords = ["miden", "crypto", "hash", "merkle"] keywords = ["miden", "crypto", "hash", "merkle"]
edition = "2021" edition = "2021"

+ 2
- 2
src/dsa/rpo_falcon512/falcon_c/rpo.c

@ -79,8 +79,8 @@ static uint64_t mult_mod_p(uint64_t x, uint64_t y)
* RPO128 Permutation * 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 * MDS matrix

Loading…
Cancel
Save