-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull out
libcrux::kem
into a standalone crate (#304)
* Make ML-KEM-768 constants public So they can be used by hybrid KEMs in the `libcrux-kem` crate. * Change `libcrux::ecdh` submodule and item visibility to public So they can be used in the `libcrux-kem` crate * Change visibility of `libcrux-ml-kem::MlKemKeyPair` fields to `pub` So they can be accessed in the `libcrux-kem` crate. * Extract `libcrux::kem` module to its own crate * Update KEM crate documentation * Format * Provide `.len()` on ML-KEM structs and use that instead of constants * Use `.into_parts()` on `MlKemKeyPair` instead of direct access * Add CI run for `libcrux-kem` * Fix ML-KEM tests * CI: Use Rust stable and exclude Win32 (linker issue) * Revert CI change to now install Rust nightly again * Pull out `ecdh` module into its own crate * Make `libcrux-kem` use `libcrux-ecdh` instead of `libcrux` * Make `libcrux` use standalone `libcrux-ecdh` crate * Copied CI workflow for ECDH crate * Merge imports * Move P256 ECDSA signature API back to libcrux * Move ECDH tests to the `libcrux-ecdh` crate * Update Cargo.lock * Make `libcrux` depend on `libcrux-kem` * Make spec libcrux interop tests use standalone crate * Update benchmarks to use `libcrux-ml-kem` (resp. `libcrux-kem`) * Remove dead code * Remove Signing Errors from `libcrux-ecdh` * Better name for `libcrux` wrapper around `libcrux-ecdh` Error * Reduce doc comment for `libcrux::kem` module * Preserve Kyber implementation notes
- Loading branch information
1 parent
b314910
commit 52af832
Showing
68 changed files
with
25,234 additions
and
5,214 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
name: KEM | ||
|
||
on: | ||
push: | ||
branches: ["main", "dev"] | ||
pull_request: | ||
branches: ["main", "dev", "*"] | ||
workflow_dispatch: | ||
merge_group: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
bits: [32, 64] | ||
os: | ||
- macos-13 # Intel mac | ||
- macos-latest # macos-14 m1 | ||
- ubuntu-latest | ||
- windows-latest | ||
exclude: | ||
- bits: 32 | ||
os: "macos-latest" | ||
- bits: 32 | ||
os: "macos-13" | ||
- bits: 32 # FIXME: Linking isn't working here yet for hacl #42 | ||
os: "windows-latest" | ||
|
||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: libcrux-ecdh | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- run: echo "RUST_TARGET_FLAG=" > $GITHUB_ENV | ||
if: ${{ matrix.bits == 64 }} | ||
|
||
- name: 🛠️ Setup Rust Nightly | ||
run: rustup toolchain install nightly | ||
|
||
- name: 🛠️ Setup Ubuntu x86 | ||
if: ${{ matrix.bits == 32 && matrix.os == 'ubuntu-latest' }} | ||
run: | | ||
rustup target add i686-unknown-linux-gnu | ||
sudo apt-get update | ||
sudo apt-get install -y gcc-multilib g++-multilib | ||
- name: 🛠️ Setup Ubuntu x64 | ||
if: ${{ matrix.bits == 64 && matrix.os == 'ubuntu-latest' }} | ||
run: | | ||
rustup target add aarch64-unknown-linux-gnu | ||
# Set up 32 bit systems | ||
|
||
- name: 🛠️ Config Windows x86 | ||
run: echo "RUST_TARGET_FLAG=--target=i686-pc-windows-msvc" > $GITHUB_ENV | ||
if: ${{ matrix.bits == 32 && matrix.os == 'windows-latest' }} | ||
|
||
- name: 🛠️ Config Linux x86 | ||
run: | | ||
echo "RUST_TARGET_FLAG=--target=i686-unknown-linux-gnu" > $GITHUB_ENV | ||
if: ${{ matrix.bits == 32 && matrix.os == 'ubuntu-latest' }} | ||
|
||
# Build ... | ||
|
||
- name: 🔨 Build | ||
run: | | ||
rustc --print=cfg | ||
cargo build --verbose $RUST_TARGET_FLAG | ||
- name: 🔨 Build Release | ||
run: cargo build --verbose --release $RUST_TARGET_FLAG | ||
|
||
- name: 🏃🏻 Asan MacOS | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly test --release --target aarch64-apple-darwin | ||
|
||
# - name: ⬆ Upload build | ||
# uses: ./.github/actions/upload_artifacts | ||
# with: | ||
# name: build_${{ matrix.os }}_${{ matrix.bits }} | ||
|
||
# We get false positives here. | ||
# TODO: Figure out what is going on here | ||
# - name: 🏃🏻 Asan Linux | ||
# if: ${{ matrix.bits == 64 && matrix.os == 'ubuntu-latest' }} | ||
# run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly test --release --target x86_64-unknown-linux-gnu | ||
|
||
# Test ... | ||
|
||
- name: 🏃🏻♀️ Test | ||
run: | | ||
cargo clean | ||
cargo test --verbose $RUST_TARGET_FLAG | ||
- name: 🏃🏻♀️ Test Release | ||
run: | | ||
cargo clean | ||
cargo test --verbose --release $RUST_TARGET_FLAG | ||
- name: 🏃🏻♀️ Test Portable | ||
run: | | ||
cargo clean | ||
LIBCRUX_DISABLE_SIMD128=1 LIBCRUX_DISABLE_SIMD256=1 cargo test --verbose $RUST_TARGET_FLAG | ||
- name: 🏃🏻♀️ Test Portable Release | ||
run: | | ||
cargo clean | ||
LIBCRUX_DISABLE_SIMD128=1 LIBCRUX_DISABLE_SIMD256=1 cargo test --verbose --release $RUST_TARGET_FLAG |
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,120 @@ | ||
name: KEM | ||
|
||
on: | ||
push: | ||
branches: ["main", "dev"] | ||
pull_request: | ||
branches: ["main", "dev", "*"] | ||
workflow_dispatch: | ||
merge_group: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
bits: [32, 64] | ||
os: | ||
- macos-13 # Intel mac | ||
- macos-latest # macos-14 m1 | ||
- ubuntu-latest | ||
- windows-latest | ||
exclude: | ||
- bits: 32 | ||
os: "macos-latest" | ||
- bits: 32 | ||
os: "macos-13" | ||
- bits: 32 # FIXME: Linking isn't working here yet for hacl #42 | ||
os: "windows-latest" | ||
|
||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: libcrux-kem | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- run: echo "RUST_TARGET_FLAG=" > $GITHUB_ENV | ||
if: ${{ matrix.bits == 64 }} | ||
|
||
- name: 🛠️ Setup Rust Nightly | ||
run: rustup toolchain install nightly | ||
|
||
- name: 🛠️ Setup Ubuntu x86 | ||
if: ${{ matrix.bits == 32 && matrix.os == 'ubuntu-latest' }} | ||
run: | | ||
rustup target add i686-unknown-linux-gnu | ||
sudo apt-get update | ||
sudo apt-get install -y gcc-multilib g++-multilib | ||
- name: 🛠️ Setup Ubuntu x64 | ||
if: ${{ matrix.bits == 64 && matrix.os == 'ubuntu-latest' }} | ||
run: | | ||
rustup target add aarch64-unknown-linux-gnu | ||
# Set up 32 bit systems | ||
|
||
- name: 🛠️ Config Windows x86 | ||
run: echo "RUST_TARGET_FLAG=--target=i686-pc-windows-msvc" > $GITHUB_ENV | ||
if: ${{ matrix.bits == 32 && matrix.os == 'windows-latest' }} | ||
|
||
- name: 🛠️ Config Linux x86 | ||
run: | | ||
echo "RUST_TARGET_FLAG=--target=i686-unknown-linux-gnu" > $GITHUB_ENV | ||
if: ${{ matrix.bits == 32 && matrix.os == 'ubuntu-latest' }} | ||
|
||
# Build ... | ||
|
||
- name: 🔨 Build | ||
run: | | ||
rustc --print=cfg | ||
cargo build --verbose $RUST_TARGET_FLAG | ||
- name: 🔨 Build Release | ||
run: cargo build --verbose --release $RUST_TARGET_FLAG | ||
|
||
- name: 🏃🏻 Asan MacOS | ||
if: ${{ matrix.os == 'macos-latest' }} | ||
run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly test --release --target aarch64-apple-darwin | ||
|
||
# - name: ⬆ Upload build | ||
# uses: ./.github/actions/upload_artifacts | ||
# with: | ||
# name: build_${{ matrix.os }}_${{ matrix.bits }} | ||
|
||
# We get false positives here. | ||
# TODO: Figure out what is going on here | ||
# - name: 🏃🏻 Asan Linux | ||
# if: ${{ matrix.bits == 64 && matrix.os == 'ubuntu-latest' }} | ||
# run: RUSTDOCFLAGS=-Zsanitizer=address RUSTFLAGS=-Zsanitizer=address cargo +nightly test --release --target x86_64-unknown-linux-gnu | ||
|
||
# Test ... | ||
|
||
- name: 🏃🏻♀️ Test | ||
run: | | ||
cargo clean | ||
cargo test --verbose $RUST_TARGET_FLAG | ||
- name: 🏃🏻♀️ Test Release | ||
run: | | ||
cargo clean | ||
cargo test --verbose --release $RUST_TARGET_FLAG | ||
- name: 🏃🏻♀️ Test Portable | ||
run: | | ||
cargo clean | ||
LIBCRUX_DISABLE_SIMD128=1 LIBCRUX_DISABLE_SIMD256=1 cargo test --verbose $RUST_TARGET_FLAG | ||
- name: 🏃🏻♀️ Test Portable Release | ||
run: | | ||
cargo clean | ||
LIBCRUX_DISABLE_SIMD128=1 LIBCRUX_DISABLE_SIMD256=1 cargo test --verbose --release $RUST_TARGET_FLAG |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.