Luke Murphy 44f290af50
All checks were successful
continuous-integration/drone/push Build is passing
Fix noqa ref and drop erroneous flags for isort
2020-07-07 15:53:58 +02:00
2020-07-07 15:31:53 +02:00
2020-06-30 02:08:31 +02:00
2020-07-07 15:31:53 +02:00
2020-07-07 15:31:53 +02:00
2020-07-07 15:33:28 +02:00
2020-07-07 15:31:53 +02:00

hypercore-crypto

Build Status

Cryptography primitives for Hypercore

Install

$ pip install hypercore-crypto

Example

from hypercore_crypto import data, key_pair
from pysodium import crypto_sign_PUBLICKEYBYTES

public_key, secret_key = key_pair()
assert len(public_key) == crypto_sign_PUBLICKEYBYTES
print(data(b"hello world").hex())
Description
Cryptography primitives for Hypercore
Readme 116 KiB
Languages
Python 100%