ISCC-CRYPTO - cryptographic operations for the International Standard Content Code
Project description
ISCC - Crypto
iscc-crypto is the cryptographic signing and verification module for the ISCC
(International Standard Content Code) Framework.
[!CAUTION] This is a proof of concept. All releases with version numbers below v1.0.0 may break backward compatibility. The algorithms and code of this repository are experimental and not part of the official ISO 24138:2024 standard. This library has not undergone a formal security audit by independent third parties. While we strive to follow best practices and have implemented various security measures, the absence of an audit means there may be undiscovered vulnerabilities. Therefore, this library should not be used in production environments where strong security guarantees are critical.
Features
- Ed25519 key generation and management
- JSON canonicalization and signing
- W3C Verifiable Credentials Data Integrity proofs
- Multibase and multikey support
- Cryptographic nonce generation with embedded node identifier
- Command-line interface for key generation and identity management
- Minimal external dependencies for core cryptographic operations
Installation
Use the package manager pip to install iscc-crypto:
pip install iscc-crypto
Quick Start
>>> import json
>>> import iscc_crypto as icr
>>> keypair = icr.key_from_secret("z3u2So9EAtuYVuxGog4F2ksFGws8YT7pBPs4xyRbv3NJgrNA")
>>> # Sign a JSON document
>>> doc = {"title": "My Document", "content": "Important data"}
>>> signed_doc = icr.sign_json(doc, keypair)
>>> # Show the signed document structure
>>> print(json.dumps(signed_doc, indent=2))
{
"title": "My Document",
"content": "Important data",
"signature": {
"version": "ISCC-SIG v1.0",
"pubkey": "z6MkpFpVngrAUTSY6PagXa1x27qZqgdmmy3ZNWSBgyFSvBSx",
"proof": "z5xCgXk6tGJTVcvrcvVok5XgLn5Mefo49ztwwW8QCmjoySH4ZEkri4XoY2JjiyaD7yD4Na7eoGPqmhPoeM2uvBmF8"
}
}
>>> # Verify the signed document
>>> icr.verify_json(signed_doc)
VerificationResult(signature_valid=True, identity_verified=None, message=None)
Documentation
Documentation is published at https://crypto.iscc.codes
Development
Requirements
- Python 3.10 or higher
- UV for dependency management
Development Setup
git clone https://github.com/iscc/iscc-crypto.git
cd iscc-crypto
uv sync
Testing
Run the test suite:
uv run pytest
Maintainers
Contributing
Pull requests are welcome. For significant changes, please open an issue first to discuss your plans. Please make sure to update tests as appropriate.
You may also want to join our developer chat on Telegram at https://t.me/iscc_dev.
License
iscc-crypto is licensed under the Apache License, Version 2.0
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file iscc_crypto-0.5.0.tar.gz.
File metadata
- Download URL: iscc_crypto-0.5.0.tar.gz
- Upload date:
- Size: 324.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
335052e52755a5edd681af59cc995d9d87a6600fa75d16004fa17a696c3d13ed
|
|
| MD5 |
4cc5020585950d6e9fead260550c9872
|
|
| BLAKE2b-256 |
20566a09ea5d8abc22d1fe5f63991d35bd64ebbaf0e51d11a538d5758392553f
|
File details
Details for the file iscc_crypto-0.5.0-py3-none-any.whl.
File metadata
- Download URL: iscc_crypto-0.5.0-py3-none-any.whl
- Upload date:
- Size: 23.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ac6ce009ab0ad342a964ed397ca40f5e9dd609111db7085d03f6af2e4d6a7dc
|
|
| MD5 |
37968a3efaed431ceeee97f1a52fd3b3
|
|
| BLAKE2b-256 |
8996417a8ca2e2eb0ca834e057c25e191d32b1e7b122177b2a0aff049b221a51
|