-
Notifications
You must be signed in to change notification settings - Fork 50
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
1 parent
145c36d
commit 2404814
Showing
28 changed files
with
6,668 additions
and
268 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
Submodule pqclean
updated
1298 files
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,39 @@ | ||
[package] | ||
name = "pqcrypto-mldsa" | ||
description = "Post-Quantum Signature Scheme mldsa" | ||
readme = "README.md" | ||
version = "0.1.0" | ||
authors = ["Thom Wiggers <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/rustpq/" | ||
repository = "https://github.com/rustpq/pqcrypto/" | ||
keywords = ["cryptography", "post-quantum", "security"] | ||
categories = ["cryptography", "no-std"] | ||
|
||
[dependencies] | ||
pqcrypto-internals = { path = "../pqcrypto-internals", version = "0.2" } | ||
pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5", default-features = false } | ||
libc = "0.2.0" | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
serde-big-array = { version = "0.5.1", optional = true } | ||
paste = "*" | ||
|
||
[features] | ||
default = ["avx2", "neon", "std"] | ||
avx2 = ["std"] | ||
neon = ["std"] | ||
std = ["pqcrypto-traits/std"] | ||
serialization = ["serde", "serde-big-array"] | ||
|
||
[dev-dependencies] | ||
rand = "0.8.5" | ||
|
||
[build-dependencies] | ||
cc = { version = "1.0", features = ["parallel"] } | ||
glob = "0.3.0" | ||
|
||
[badges] | ||
travis-ci = { repository = "rustpq/pqcrypto", branch = "master" } | ||
maintenance = { status = "actively-developed" } | ||
|
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,45 @@ | ||
# mldsa | ||
|
||
|
||
This crate contains bindings to the C implementations of the following schemes, | ||
from [PQClean][pqclean]. | ||
|
||
This project packages Post-Quantum cryptographic algorithms that participate in | ||
the [NIST PQC standardization effort][nistpqc]. It is currently a collection of | ||
wrappers around C implementations from the [PQClean][pqclean] project. | ||
|
||
## Serialization | ||
|
||
If you want `serde` support, enable the `serialization` feature. | ||
|
||
## Included implementations from PQClean | ||
|
||
Below is a list of the included schemes and the corresponding implementations | ||
sourced from [PQClean][pqclean]. The "default" implementation is used in the | ||
Rust-friendly interface, alternative implementations are exposed as ``ffi`` | ||
methods only. | ||
|
||
* ``ml-dsa-44`` | ||
* ``clean`` | ||
* ``avx2`` (if supported) | ||
* ``aarch64`` (if supported) | ||
* ``ml-dsa-65`` | ||
* ``clean`` | ||
* ``avx2`` (if supported) | ||
* ``aarch64`` (if supported) | ||
* ``ml-dsa-87`` | ||
* ``clean`` | ||
* ``avx2`` (if supported) | ||
* ``aarch64`` (if supported) | ||
|
||
|
||
## License | ||
|
||
The wrappers and wrapper generation scripts in this project are covered by the | ||
MIT or Apache 2.0 licenses, at your choice. | ||
|
||
The implementations we link to are not, however. Please see the [PQClean][pqclean] | ||
project for the appropriate licenses. | ||
|
||
[pqclean]: https://github.com/PQClean/PQClean/ | ||
[nistpqc]: https://nist.gov/pqc/ |
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,162 @@ | ||
extern crate cc; | ||
extern crate glob; | ||
|
||
use std::env; | ||
use std::path::{Path, PathBuf}; | ||
|
||
macro_rules! build_clean { | ||
($variant:expr) => { | ||
let internals_include_path = &std::env::var("DEP_PQCRYPTO_INTERNALS_INCLUDEPATH").unwrap(); | ||
let common_dir = Path::new("pqclean/common"); | ||
|
||
let mut builder = cc::Build::new(); | ||
let target_dir: PathBuf = ["pqclean", "crypto_sign", $variant, "clean"] | ||
.iter() | ||
.collect(); | ||
|
||
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap(); | ||
if target_os == "wasi" { | ||
let wasi_sdk_path = | ||
&std::env::var("WASI_SDK_DIR").expect("missing environment variable: WASI_SDK_DIR"); | ||
builder.flag(format!("--sysroot={}", wasi_sdk_path).as_str()); | ||
} | ||
|
||
let scheme_files = glob::glob(target_dir.join("*.c").to_str().unwrap()).unwrap(); | ||
|
||
builder | ||
.include(internals_include_path) | ||
.include(&common_dir) | ||
.include(target_dir) | ||
.files( | ||
scheme_files | ||
.into_iter() | ||
.map(|p| p.unwrap().to_string_lossy().into_owned()), | ||
); | ||
builder.compile(format!("{}_clean", $variant).as_str()); | ||
}; | ||
} | ||
|
||
macro_rules! build_avx2 { | ||
($variant:expr) => { | ||
let internals_include_path = &std::env::var("DEP_PQCRYPTO_INTERNALS_INCLUDEPATH").unwrap(); | ||
let common_dir = Path::new("pqclean/common"); | ||
|
||
let mut builder = cc::Build::new(); | ||
let target_dir: PathBuf = ["pqclean", "crypto_sign", $variant, "avx2"] | ||
.iter() | ||
.collect(); | ||
|
||
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap(); | ||
if target_os == "wasi" { | ||
let wasi_sdk_path = | ||
&std::env::var("WASI_SDK_DIR").expect("missing environment variable: WASI_SDK_DIR"); | ||
builder.flag(format!("--sysroot={}", wasi_sdk_path).as_str()); | ||
} | ||
|
||
let scheme_files = glob::glob(target_dir.join("*.[csS]").to_str().unwrap()).unwrap(); | ||
let target_env = env::var("CARGO_CFG_TARGET_ENV").unwrap(); | ||
if target_env == "msvc" { | ||
builder.flag("/arch:AVX2"); | ||
} else { | ||
builder | ||
.flag("-mavx2") | ||
.flag("-mbmi2") | ||
.flag("-mbmi") | ||
.flag("-maes") | ||
.flag("-mpopcnt") | ||
.flag("-mpclmul"); | ||
} | ||
|
||
builder | ||
.include(internals_include_path) | ||
.include(&common_dir) | ||
.include(target_dir) | ||
.files( | ||
scheme_files | ||
.into_iter() | ||
.map(|p| p.unwrap().to_string_lossy().into_owned()), | ||
); | ||
builder.compile(format!("{}_avx2", $variant).as_str()); | ||
}; | ||
} | ||
|
||
macro_rules! build_aarch64 { | ||
($variant:expr) => { | ||
let internals_include_path = &std::env::var("DEP_PQCRYPTO_INTERNALS_INCLUDEPATH").unwrap(); | ||
let common_dir = Path::new("pqclean/common"); | ||
|
||
let mut builder = cc::Build::new(); | ||
let target_dir: PathBuf = ["pqclean", "crypto_sign", $variant, "aarch64"] | ||
.iter() | ||
.collect(); | ||
|
||
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap(); | ||
if target_os == "wasi" { | ||
let wasi_sdk_path = | ||
&std::env::var("WASI_SDK_DIR").expect("missing environment variable: WASI_SDK_DIR"); | ||
builder.flag(format!("--sysroot={}", wasi_sdk_path).as_str()); | ||
} | ||
|
||
let scheme_files = glob::glob(target_dir.join("*.[csS]").to_str().unwrap()).unwrap(); | ||
builder.flag("-march=armv8-a"); | ||
|
||
builder | ||
.include(internals_include_path) | ||
.include(&common_dir) | ||
.include(target_dir) | ||
.files( | ||
scheme_files | ||
.into_iter() | ||
.map(|p| p.unwrap().to_string_lossy().into_owned()), | ||
); | ||
builder.compile(format!("{}_aarch64", $variant).as_str()); | ||
}; | ||
} | ||
|
||
fn main() { | ||
#[allow(unused_variables)] | ||
let aes_enabled = env::var("CARGO_FEATURE_AES").is_ok(); | ||
#[allow(unused_variables)] | ||
let avx2_enabled = env::var("CARGO_FEATURE_AVX2").is_ok(); | ||
#[allow(unused_variables)] | ||
let neon_enabled = env::var("CARGO_FEATURE_NEON").is_ok(); | ||
#[allow(unused_variables)] | ||
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap(); | ||
#[allow(unused_variables)] | ||
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap(); | ||
#[allow(unused_variables)] | ||
let is_windows = target_os == "windows"; | ||
#[allow(unused_variables)] | ||
let is_macos = target_os == "macos"; | ||
|
||
build_clean!("ml-dsa-44"); | ||
if target_arch == "x86_64" && avx2_enabled && !is_windows { | ||
build_avx2!("ml-dsa-44"); | ||
} | ||
if target_arch == "aarch64" && neon_enabled { | ||
build_aarch64!("ml-dsa-44"); | ||
} | ||
build_clean!("ml-dsa-65"); | ||
if target_arch == "x86_64" && avx2_enabled && !is_windows { | ||
build_avx2!("ml-dsa-65"); | ||
} | ||
if target_arch == "aarch64" && neon_enabled { | ||
build_aarch64!("ml-dsa-65"); | ||
} | ||
build_clean!("ml-dsa-87"); | ||
if target_arch == "x86_64" && avx2_enabled && !is_windows { | ||
build_avx2!("ml-dsa-87"); | ||
} | ||
if target_arch == "aarch64" && neon_enabled { | ||
build_aarch64!("ml-dsa-87"); | ||
} | ||
|
||
if target_arch == "x86_64" && avx2_enabled && !is_windows { | ||
// Print enableing flag for AVX2 implementation | ||
println!("cargo:rustc-cfg=enable_x86_avx2"); | ||
} | ||
if target_arch == "aarch64" && neon_enabled { | ||
// Print enableing flag for AARCH64 implementation | ||
println!("cargo:rustc-cfg=enable_aarch64_neon"); | ||
} | ||
} |
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 @@ | ||
../pqclean |
Oops, something went wrong.