爆笑
python中secp256k1的椭圆曲线集成加密方案。
其他语言版本:
您也可以查看FastAPI Web后端演示。
安装
在Python pip install eciespy使用pip install eciespy 。
快速开始
>> > from ecies . utils import generate_eth_key , generate_key
>> > from ecies import encrypt , decrypt
>> > eth_k = generate_eth_key ()
>> > sk_hex = eth_k . to_hex () # hex string
>> > pk_hex = eth_k . public_key . to_hex () # hex string
>> > data = b'this is a test'
>> > decrypt ( sk_hex , encrypt ( pk_hex , data ))
b'this is a test'
>> > secp_k = generate_key ()
>> >
1