pqc-binary-format 1.0.9 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -8
- package/package.json +1 -1
- package/pqc_binary_format_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# PQC Binary Format v1.0.
|
|
1
|
+
# PQC Binary Format v1.0.11
|
|
2
2
|
|
|
3
3
|
[](https://crates.io/crates/pqc-binary-format)
|
|
4
4
|
[](https://docs.rs/pqc-binary-format)
|
|
@@ -15,7 +15,7 @@ Post-quantum cryptography (PQC) implementations suffer from the "Babel Tower pro
|
|
|
15
15
|
|
|
16
16
|
PQC Binary Format provides a universal, algorithm-agnostic format that:
|
|
17
17
|
|
|
18
|
-
- ✅ Works across **
|
|
18
|
+
- ✅ Works across **31+ cryptographic algorithms**
|
|
19
19
|
- ✅ **Self-describing metadata** enables seamless decryption
|
|
20
20
|
- ✅ **Integrity verification** with SHA-256 checksums
|
|
21
21
|
- ✅ **Cross-platform compatible** (Rust, Python, JavaScript, Go, etc.)
|
|
@@ -207,14 +207,14 @@ int main() {
|
|
|
207
207
|
|
|
208
208
|
PQC Binary Format provides **production-ready, fully tested bindings** for multiple programming languages. All bindings support the complete API and produce cross-compatible binary formats.
|
|
209
209
|
|
|
210
|
-
### Available Bindings (v1.0.
|
|
210
|
+
### Available Bindings (v1.0.11)
|
|
211
211
|
|
|
212
212
|
| Language | Status | Package | Documentation | Examples |
|
|
213
213
|
|----------|--------|---------|---------------|----------|
|
|
214
214
|
| **Rust** | ✅ Native | `pqc-binary-format` | [docs.rs](https://docs.rs/pqc-binary-format) | [3 examples](examples/) |
|
|
215
215
|
| **Python** | ✅ Tested | `pqc_binary_format` | [Python README](bindings/python/README.md) | [2 examples](examples/python/) |
|
|
216
216
|
| **JavaScript/WASM** | ✅ Tested | `pqc_binary_format` (npm) | [JS README](bindings/javascript/README.md) | [1 example](examples/javascript/) |
|
|
217
|
-
| **Go** | ✅ Tested | `github.com/PQCrypta/pqcrypta-community/bindings/go` | [
|
|
217
|
+
| **Go** | ✅ Tested | `github.com/PQCrypta/pqcrypta-community/bindings/go` | [pkg.go.dev](https://pkg.go.dev/github.com/PQCrypta/pqcrypta-community/bindings/go) | [1 example](bindings/go/examples/) |
|
|
218
218
|
| **C** | ✅ Tested | FFI via Rust | [C/C++ README](bindings/c-cpp/README.md) | [1 example](examples/c/) |
|
|
219
219
|
| **C++** | ✅ Tested | FFI via Rust | [C/C++ README](bindings/c-cpp/README.md) | [1 example](examples/cpp/) |
|
|
220
220
|
|
|
@@ -263,7 +263,7 @@ cd examples/go && go run basic_usage.go < ../../data.bin
|
|
|
263
263
|
### Binding Features
|
|
264
264
|
|
|
265
265
|
All bindings support:
|
|
266
|
-
- ✅ Full algorithm suite (
|
|
266
|
+
- ✅ Full algorithm suite (31 algorithms)
|
|
267
267
|
- ✅ Metadata serialization/deserialization
|
|
268
268
|
- ✅ SHA-256 integrity verification
|
|
269
269
|
- ✅ Feature flags (compression, streaming, etc.)
|
|
@@ -274,7 +274,7 @@ All bindings support:
|
|
|
274
274
|
|
|
275
275
|
| Platform | Status | Notes |
|
|
276
276
|
|----------|--------|-------|
|
|
277
|
-
| crates.io (Rust) | ✅ **Published** | **[v1.0.
|
|
277
|
+
| crates.io (Rust) | ✅ **Published** | **[v1.0.11 live!](https://crates.io/crates/pqc-binary-format)** |
|
|
278
278
|
| PyPI (Python) | ⏳ Ready | Maturin build tested, ready for `maturin publish` |
|
|
279
279
|
| npm (JavaScript) | ⏳ Ready | WASM package built with wasm-pack |
|
|
280
280
|
| pkg.go.dev (Go) | ⏳ Ready | Will auto-index on tag push |
|
|
@@ -305,7 +305,7 @@ All bindings support:
|
|
|
305
305
|
|
|
306
306
|
## 🔐 Supported Algorithms
|
|
307
307
|
|
|
308
|
-
The format supports
|
|
308
|
+
The format supports 31 cryptographic algorithm identifiers:
|
|
309
309
|
|
|
310
310
|
### Classical Algorithms
|
|
311
311
|
- **Classical** (0x0050): X25519 + Ed25519 + AES-256-GCM
|
|
@@ -331,6 +331,9 @@ Falcon-based signature algorithms
|
|
|
331
331
|
### Experimental (0x0500-0x0506)
|
|
332
332
|
Research and next-generation algorithms
|
|
333
333
|
|
|
334
|
+
### HQC Code-Based Series (0x0600-0x0602)
|
|
335
|
+
NIST 2025 Backup KEM standard - code-based cryptography
|
|
336
|
+
|
|
334
337
|
[View full algorithm list](docs/algorithms.md)
|
|
335
338
|
|
|
336
339
|
## 🎯 Features
|
|
@@ -604,7 +607,7 @@ We welcome contributions! See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
|
|
604
607
|
|
|
605
608
|
### Current Status
|
|
606
609
|
|
|
607
|
-
- **Language Bindings**: ✅ **Rust** (native), ✅ **Python** (tested v1.0.
|
|
610
|
+
- **Language Bindings**: ✅ **Rust** (native), ✅ **Python** (tested v1.0.11), ✅ **JavaScript/WASM** (tested v1.0.11), ✅ **Go** (tested v1.0.11), ✅ **C/C++** (tested v1.0.11)
|
|
608
611
|
- **Examples**: ✅ 9 validated examples across 6 languages
|
|
609
612
|
- **Package Distribution**: ✅ **crates.io published!** | ⏳ PyPI, npm, pkg.go.dev ready
|
|
610
613
|
|
package/package.json
CHANGED
|
Binary file
|