This commit is contained in:
everbarry 2026-05-06 17:47:35 +02:00
parent 3dd1874652
commit 5946b69c8b
10 changed files with 11 additions and 11 deletions

2
Cargo.lock generated
View File

@ -748,7 +748,7 @@ dependencies = [
[[package]]
name = "zkac"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"blake2",
"chacha20poly1305",

View File

@ -1,6 +1,6 @@
[package]
name = "zkac"
version = "0.7.0"
version = "0.7.1"
edition = "2021"
description = "Zero-Knowledge Access Control: BBS+ anonymous credentials (BLS12-381) with encrypted transport (X25519/ChaCha20-Poly1305)"

View File

@ -1,6 +1,6 @@
[project]
name = "zkac-node"
version = "0.7.0"
version = "0.7.1"
requires-python = ">=3.10"
dependencies = ["zkac"]

View File

@ -1,5 +1,5 @@
Metadata-Version: 2.4
Name: zkac-node
Version: 0.7.0
Version: 0.7.1
Requires-Python: >=3.10
Requires-Dist: zkac

View File

@ -1,6 +1,6 @@
# ZKAC Python API Reference
Version 0.7.0. Cryptographic stack: **BBS+** on BLS12-381 (credentials), **X25519** + **ChaCha20-Poly1305** (transport), **Schnorr/Ristretto255** (identity), **BLAKE2b** (role IDs, signatures).
Version 0.7.1. Cryptographic stack: **BBS+** on BLS12-381 (credentials), **X25519** + **ChaCha20-Poly1305** (transport), **Schnorr/Ristretto255** (identity), **BLAKE2b** (role IDs, signatures).
```python
import zkac

View File

@ -1,4 +1,4 @@
# Security model (ZKAC 0.7.0)
# Security model (ZKAC 0.7.1)
This document summarizes the direct peer-to-peer grant model, with transcript-bound BBS+ authorization (Option C).

2
fuzz/Cargo.lock generated
View File

@ -709,7 +709,7 @@ dependencies = [
[[package]]
name = "zkac"
version = "0.7.0"
version = "0.7.1"
dependencies = [
"blake2",
"chacha20poly1305",

View File

@ -4,7 +4,7 @@ build-backend = "maturin"
[project]
name = "zkac"
version = "0.7.0"
version = "0.7.1"
description = "Zero-Knowledge Access Control: BBS+ anonymous credentials with encrypted transport"
readme = "README.md"
requires-python = ">=3.10"

View File

@ -4,7 +4,7 @@ ZKAC — Zero-Knowledge Access Control
BBS+ anonymous credentials (BLS12-381) with encrypted transport (Ristretto255 / X25519).
"""
__version__ = "0.7.0"
__version__ = "0.7.1"
from zkac._zkac import (
MAX_BBS_AUTH_PROOF_BYTES,

4
uv.lock generated
View File

@ -1918,7 +1918,7 @@ wheels = [
[[package]]
name = "zkac"
version = "0.7.0"
version = "0.7.1"
source = { editable = "." }
dependencies = [
{ name = "ipykernel" },
@ -1964,7 +1964,7 @@ dev = [
[[package]]
name = "zkac-node"
version = "0.7.0"
version = "0.7.1"
source = { editable = "cli" }
dependencies = [
{ name = "zkac" },