v bump
This commit is contained in:
parent
3dd1874652
commit
5946b69c8b
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -748,7 +748,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zkac"
|
name = "zkac"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"blake2",
|
"blake2",
|
||||||
"chacha20poly1305",
|
"chacha20poly1305",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "zkac"
|
name = "zkac"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
description = "Zero-Knowledge Access Control: BBS+ anonymous credentials (BLS12-381) with encrypted transport (X25519/ChaCha20-Poly1305)"
|
description = "Zero-Knowledge Access Control: BBS+ anonymous credentials (BLS12-381) with encrypted transport (X25519/ChaCha20-Poly1305)"
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "zkac-node"
|
name = "zkac-node"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
dependencies = ["zkac"]
|
dependencies = ["zkac"]
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
Metadata-Version: 2.4
|
Metadata-Version: 2.4
|
||||||
Name: zkac-node
|
Name: zkac-node
|
||||||
Version: 0.7.0
|
Version: 0.7.1
|
||||||
Requires-Python: >=3.10
|
Requires-Python: >=3.10
|
||||||
Requires-Dist: zkac
|
Requires-Dist: zkac
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
# ZKAC Python API Reference
|
# 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
|
```python
|
||||||
import zkac
|
import zkac
|
||||||
|
|||||||
@ -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).
|
This document summarizes the direct peer-to-peer grant model, with transcript-bound BBS+ authorization (Option C).
|
||||||
|
|
||||||
|
|||||||
2
fuzz/Cargo.lock
generated
2
fuzz/Cargo.lock
generated
@ -709,7 +709,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zkac"
|
name = "zkac"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"blake2",
|
"blake2",
|
||||||
"chacha20poly1305",
|
"chacha20poly1305",
|
||||||
|
|||||||
@ -4,7 +4,7 @@ build-backend = "maturin"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "zkac"
|
name = "zkac"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
description = "Zero-Knowledge Access Control: BBS+ anonymous credentials with encrypted transport"
|
description = "Zero-Knowledge Access Control: BBS+ anonymous credentials with encrypted transport"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
|
|||||||
@ -4,7 +4,7 @@ ZKAC — Zero-Knowledge Access Control
|
|||||||
BBS+ anonymous credentials (BLS12-381) with encrypted transport (Ristretto255 / X25519).
|
BBS+ anonymous credentials (BLS12-381) with encrypted transport (Ristretto255 / X25519).
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.7.0"
|
__version__ = "0.7.1"
|
||||||
|
|
||||||
from zkac._zkac import (
|
from zkac._zkac import (
|
||||||
MAX_BBS_AUTH_PROOF_BYTES,
|
MAX_BBS_AUTH_PROOF_BYTES,
|
||||||
|
|||||||
4
uv.lock
generated
4
uv.lock
generated
@ -1918,7 +1918,7 @@ wheels = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zkac"
|
name = "zkac"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "ipykernel" },
|
{ name = "ipykernel" },
|
||||||
@ -1964,7 +1964,7 @@ dev = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zkac-node"
|
name = "zkac-node"
|
||||||
version = "0.7.0"
|
version = "0.7.1"
|
||||||
source = { editable = "cli" }
|
source = { editable = "cli" }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "zkac" },
|
{ name = "zkac" },
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user