Squeak library
Project description
squeak
Requirements
- python3
Test
make test
Install
pip install squeaklib
Examples
Create a squeak, verify its signature with the public key, and decrypt the content:
import time
from bitcoin.core import lx
from squeak.core import CheckSqueak
from squeak.core import MakeSqueakFromStr
from squeak.core.keys import SqueakPrivateKey
private_key = SqueakPrivateKey.generate()
block_height = 0
block_hash = lx('4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b')
content = "Hello world!"
timestamp = int(time.time())
squeak, secret_key = MakeSqueakFromStr(
private_key,
content,
block_height,
block_hash,
timestamp,
)
CheckSqueak(squeak) # No exception raised
print(squeak.GetHash()) # prints b"\x9e\xeb\xbc)N\x94\xe2\x85\x9b(d\x7f\x1e7\xb5{\xcbY\xef\xd4;\xf7P\xfe\x19'Q\xb7\x7f\xbda\xaf"
print(squeak.GetPubKey()) # prints SqueakPublicKey('02d2fe30552bb5ec3b6822cec25b7dd7d4163974e28f2f4ef40d1f9d09086704c6')
print(squeak.GetDecryptedContentStr(secret_key)) # Hello world!
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
squeaklib-0.10.1.tar.gz
(13.0 kB
view hashes)
Built Distribution
Close
Hashes for squeaklib-0.10.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59c2d999f143dc2daca8220c0d0e253db518caae2a2974df52ab7a1fad975794 |
|
MD5 | 79e537d07101084ce91c21f73e57f02a |
|
BLAKE2b-256 | c0b7caa8b1b6ebadcc8390a0f1cc05669016224f2f426df3c23ba80e6fabfc6e |