Skip to main content

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

unimatrix.ext.crypto-0.2.15.tar.gz (27.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page