validpay 1.0.0__tar.gz → 1.0.1__tar.gz
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.
- {validpay-1.0.0 → validpay-1.0.1}/CHANGELOG.md +46 -34
- {validpay-1.0.0 → validpay-1.0.1}/LICENSE +21 -21
- {validpay-1.0.0 → validpay-1.0.1}/MANIFEST.in +7 -7
- {validpay-1.0.0/validpay.egg-info → validpay-1.0.1}/PKG-INFO +260 -281
- {validpay-1.0.0 → validpay-1.0.1}/README.md +204 -225
- {validpay-1.0.0 → validpay-1.0.1}/pyproject.toml +58 -58
- {validpay-1.0.0 → validpay-1.0.1}/setup.cfg +4 -4
- {validpay-1.0.0 → validpay-1.0.1}/validpay/__init__.py +52 -52
- {validpay-1.0.0 → validpay-1.0.1}/validpay/_timelock.py +53 -53
- {validpay-1.0.0 → validpay-1.0.1}/validpay/binding.py +154 -154
- {validpay-1.0.0 → validpay-1.0.1}/validpay/client.py +967 -967
- {validpay-1.0.0 → validpay-1.0.1}/validpay/crypto.py +219 -219
- {validpay-1.0.0 → validpay-1.0.1}/validpay/errors.py +32 -32
- {validpay-1.0.0 → validpay-1.0.1}/validpay/offline.py +312 -312
- {validpay-1.0.0 → validpay-1.0.1}/validpay/types.py +56 -56
- {validpay-1.0.0 → validpay-1.0.1/validpay.egg-info}/PKG-INFO +260 -281
- {validpay-1.0.0 → validpay-1.0.1}/validpay/py.typed +0 -0
- {validpay-1.0.0 → validpay-1.0.1}/validpay.egg-info/SOURCES.txt +0 -0
- {validpay-1.0.0 → validpay-1.0.1}/validpay.egg-info/dependency_links.txt +0 -0
- {validpay-1.0.0 → validpay-1.0.1}/validpay.egg-info/requires.txt +0 -0
- {validpay-1.0.0 → validpay-1.0.1}/validpay.egg-info/top_level.txt +0 -0
|
@@ -1,34 +1,46 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to the ValidPay Python SDK will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [1.0.
|
|
9
|
-
|
|
10
|
-
###
|
|
11
|
-
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
- **
|
|
33
|
-
|
|
34
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the ValidPay Python SDK will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.0.1] - 2026-06-08
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- `DEFAULT_BASE_URL` is now `https://api.validpay.com` (Prompt 086B —
|
|
13
|
+
primary domain migrated from validpay.io). The legacy host keeps
|
|
14
|
+
working via Cloudflare 301 redirects, so 1.0.0 installs are
|
|
15
|
+
unaffected; new installs default to `.com`. The `base_url` constructor
|
|
16
|
+
argument continues to override.
|
|
17
|
+
- README + `pyproject.toml` URLs (Homepage, Documentation) now point at
|
|
18
|
+
`validpay.com`.
|
|
19
|
+
|
|
20
|
+
## [1.0.0] - 2026-05-03
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- **Core client** (`ValidPayClient`) — create, verify, revoke, and reinstate
|
|
25
|
+
document intents via the ValidPay API.
|
|
26
|
+
- **AES-256-GCM encryption** — client-side encryption/decryption with
|
|
27
|
+
commitment hash verification (Patent B).
|
|
28
|
+
- **Split-key verification** (Patent C) — XOR key splitting into Share A
|
|
29
|
+
(document) and Share B (server). Neither alone decrypts.
|
|
30
|
+
- **Time-locked verification** (Patent D) — optional `valid_from` /
|
|
31
|
+
`valid_until` windows with client-side enforcement.
|
|
32
|
+
- **Selective field disclosure** (Patent E) — per-field encryption with
|
|
33
|
+
role-based disclosure policies.
|
|
34
|
+
- **Physical medium binding** (Patent F) — perceptual hashing and binding
|
|
35
|
+
zone comparison for document-to-physical matching.
|
|
36
|
+
Requires optional `binding` extra (`pip install validpay[binding]`).
|
|
37
|
+
- **Chain-of-custody tracking** (Patent G) — verification event audit log
|
|
38
|
+
via the API.
|
|
39
|
+
- **Blind revocation** (Patent H) — revoke/reinstate intents without
|
|
40
|
+
decrypting the payload.
|
|
41
|
+
- **Offline verification** (`OfflineCache`) — encrypted local cache for
|
|
42
|
+
offline verification with staleness tracking and revocation sync.
|
|
43
|
+
- **Batch intent creation** — create up to 100 intents in a single API call.
|
|
44
|
+
- **115 automated tests** across 4 test modules.
|
|
45
|
+
|
|
46
|
+
[1.0.0]: https://github.com/ValidPay-io/validpay-python-sdk/releases/tag/v1.0.0
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 ValidPay
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ValidPay
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
include LICENSE
|
|
2
|
-
include README.md
|
|
3
|
-
include CHANGELOG.md
|
|
4
|
-
recursive-include validpay *.py
|
|
5
|
-
prune tests
|
|
6
|
-
prune check21
|
|
7
|
-
prune .github
|
|
1
|
+
include LICENSE
|
|
2
|
+
include README.md
|
|
3
|
+
include CHANGELOG.md
|
|
4
|
+
recursive-include validpay *.py
|
|
5
|
+
prune tests
|
|
6
|
+
prune check21
|
|
7
|
+
prune .github
|