- 博客(1)
- 收藏
- 关注
原创 RSA解密big算法独创
from Crypto.Util.number import long_to_bytes, bytes_to_longfrom Crypto.Util.strxor import strxor# RSA解密def rsa_decrypt(ciphertext, N, d): plaintext_number = pow(ciphertext, d, N) plaintext_bytes = long_to_bytes(plaintext_number) return plaintext_b
2024-05-12 12:52:13
438
2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人