python区块链简单模拟【01】

完整代码
https://gitee.com/ihan1001
https://github.com/ihan1001
重点:时间戳,MD5哈希,SHA256哈希,base64一种用64个字符表示任意二进制数据的方法,ECC椭圆曲线算法

import time
time.time()

python区块链简单模拟【01】_第1张图片

datetime.now().strftime("%Y-%m-%d %H:%M:%S")

在这里插入图片描述

import hashlib
m=hashlib.md5()
m.update('使用md5加密的数据'.encode('utf-8'))
print(m.hexdigest())

在这里插入图片描述

s = hashlib.sha256()
h = hashlib.sha256()
s.update('i'.encode('utf-8'))
s.update('h'.encode('utf-8'))
s.update('a'.encode('utf-8'))
s.update('h'.encode('utf-8'))
print(s.hexdigest())
h.update('ihan'.encode('utf-8'))
print(h.hexdigest())

python区块链简单模拟【01】_第2张图片

#base64 一种用64个字符表示任意二进制数据的方法
import base64
data = '你好,ihan'
#加密
result = base64.b64encode(data.encode('utf-8'))
print(result)

python区块链简单模拟【01】_第3张图片

#解码
text = base64.b64decode(result)
print(text.decode('utf-8'))

python区块链简单模拟【01】_第4张图片

pip install ecdsa

python区块链简单模拟【01】_第5张图片

from ecdsa import SigningKey,SECP256k1    #椭圆曲线算法
#生成一对私钥和公钥
#私钥对字符串签名,公钥验证
#生成私钥
sk = SigningKey.generate(curve = SECP256k1)
sk

python区块链简单模拟【01】_第6张图片

#生成公钥
vk = sk.get_verifying_key()
vk
#生成签名
signature = sk.sign("ihan".encode("utf-8"))
#验证签名
vk.verify(signature,"ihan".encode("utf-8"))

你可能感兴趣的:(区块链模拟,python,区块链,开发语言)