Enter a description for this Unimatrix package
Project description
Unimatrix Crypto
A Python library that provides abstraction around various primitives for cryptographic operations.
Supported cryptographic implementations are:
- RSA PKCS1.5/SHA256
Supported key providers are:
- Local
- Google Cloud KMS
Installation
pip install unimatrix.ext.crypto
Usage
When using unimatrix.ext.crypto
with Google Cloud KMS, the
GOOGLE_APPLICATION_CREDENTIALS
environment variable needs
to be provided, pointing to your service account JSON
credentials.
import os
from unimatrix.ext.crypto.lib.google import Signer
signer = Signer(resource_id="your/kms/key/resource/id")
some_data_to_sign = os.urandom(256)
sig = signer.sign(some_data_to_sign)
print(sig.verify(signer.public, some_data_to_sign))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file unimatrix.ext.crypto-0.2.3.tar.gz
.
File metadata
- Download URL: unimatrix.ext.crypto-0.2.3.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfdd5ab4ab57c51f7020ee3796cca4afe71c205e8713a914732be4cda2df1386 |
|
MD5 | c5e01aba1ef206b71e779cd03738c120 |
|
BLAKE2b-256 | 34075cc966fb41fc959e6e458990b07c1d021786a545dfb86bd3547ddaf0cbec |