Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions x-wing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.1.0 (2026-07-08)
Initial release.
5 changes: 2 additions & 3 deletions x-wing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "x-wing"
description = "Pure Rust implementation of the X-Wing Key Encapsulation Mechanism (draft 06)"
version = "0.1.0-rc.0"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0 OR MIT"
Expand All @@ -20,8 +20,7 @@ hazmat = []

[dependencies]
kem = "0.3"
ml-kem = { version = "0.3.0-rc.0", default-features = false, features = ["hazmat"] }
rand_core = { version = "0.10", default-features = false }
ml-kem = { version = "0.3", default-features = false, features = ["hazmat"] }
sha3 = { version = "0.12", default-features = false }
shake = { version = "0.1", default-features = false }
x25519-dalek = { version = "3", default-features = false, features = ["static_secrets"] }
Expand Down
2 changes: 1 addition & 1 deletion x-wing/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2024 RustCrypto Developers
Copyright (c) 2024-2026 RustCrypto Developers

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion x-wing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ The original paper: [X-Wing The Hybrid KEM You’ve Been Looking For][X-WING-PAP
The following features are provided by this crate:
* `getrandom` — Enables `generate_key_pair` (generate without an explicit RNG)
* `zeroize` — Enables memory zeroing for all cryptographic secrets
* `hazmat` — Enables `EncapsulationKey::encapsulate_deterministic`. Useful for testing purposes. Do NOT enable unless you know what you are doing.
* `hazmat` — Enables `EncapsulationKey::encapsulate_deterministic`. Useful for testing purposes.
Do NOT enable unless you know what you are doing.

The **default** features are `[]` (nothing).

Expand Down