xmss: rename from xmss-signature (#1243)

The shorter name is available
This commit is contained in:
Tony Arcieri
2026-03-03 10:54:59 -07:00
committed by GitHub
parent c2a39b803b
commit c0b21b60ac
4 changed files with 12 additions and 12 deletions
Generated
+3 -3
View File
@@ -1518,7 +1518,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
dependencies = [
"fastrand",
"getrandom 0.4.1",
"getrandom 0.3.4",
"once_cell",
"rustix",
"windows-sys",
@@ -1823,8 +1823,8 @@ dependencies = [
]
[[package]]
name = "xmss-signatures"
version = "0.1.0"
name = "xmss"
version = "0.1.0-pre"
dependencies = [
"const-oid 0.9.6",
"der 0.7.10",
+1 -1
View File
@@ -26,4 +26,4 @@ lms-signature = { path = "./lms" }
ml-dsa = { path = "./ml-dsa" }
rfc6979 = { path = "./rfc6979" }
slh-dsa = { path = "./slh-dsa" }
xmss-signatures = { path = "./xmss" }
xmss = { path = "./xmss" }
+3 -3
View File
@@ -1,7 +1,6 @@
[package]
name = "xmss-signatures"
name = "xmss"
authors = ["Michael Lodder <redmike7@gmail.com>"]
category = ["cryptography"]
description = """
Pure Rust implementation of XMSS (eXtended Merkle Signature Scheme)
as described in RFC 8391 and SP 800-208
@@ -10,9 +9,10 @@ edition = "2024"
homepage = "https://github.com/RustCrypto/signature/tree/master/xmss"
repository = "https://github.com/RustCrypto/signatures"
readme = "README.md"
categories = ["cryptography"]
keywords = ["xmss", "signature", "crypto", "cryptography", "rfc8391"]
license = "MIT/Apache-2.0"
version = "0.1.0"
version = "0.1.0-pre"
[features]
default = []
+5 -5
View File
@@ -38,7 +38,7 @@ This crate provides:
## Usage
```rust
use xmss_signatures::{KeyPair, XmssSha2_10_256};
use xmss::{KeyPair, XmssSha2_10_256};
// Generate a key pair
let mut kp = KeyPair::<XmssSha2_10_256>::generate(&mut rand::rng()).unwrap();
@@ -124,10 +124,10 @@ dual licensed as above, without any additional terms or conditions.
[//]: # (badges)
[crate-image]: https://img.shields.io/crates/v/xmss-signatures?logo=rust
[crate-link]: https://crates.io/crates/xmss-signatures
[docs-image]: https://docs.rs/xmss-signatures/badge.svg
[docs-link]: https://docs.rs/xmss-signatures/
[crate-image]: https://img.shields.io/crates/v/xmss?logo=rust
[crate-link]: https://crates.io/crates/xmss
[docs-image]: https://docs.rs/xmss/badge.svg
[docs-link]: https://docs.rs/xmss/
[build-image]: https://github.com/RustCrypto/signatures/actions/workflows/xmss.yml/badge.svg
[build-link]: https://github.com/RustCrypto/signatures/actions/workflows/xmss.yml
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg