python3 RSA 알고리즘 생성 키 쌍, 파일 암호화 해독
11621 단어 python3
@staticmethod
def create_rsa_keys(code='nooneknows'):
# 2048 RSA
key = RSA.generate(2048)
encrypted_key = key.exportKey(passphrase=code, pkcs=8, protection="scryptAndAES128-CBC")
#
with open('private_rsa_key.bin', 'wb') as f:
f.write(encrypted_key)
#
with open('rsa_public.pem', 'wb') as f:
f.write(key.publickey().exportKey())
파일 암호화
@staticmethod
def file_encryption(file_name, public_key):
"""
:param file_name:
:param public_key:
:return:
"""
# ,
with open(file_name, 'rb') as f:
data = f.read()
file_name_new = file_name + '.rsa'
with open(file_name_new, 'wb') as out_file:
# -
recipient_key = RSA.import_key(open(public_key).read())
# 16
session_key = get_random_bytes(16)
# Encrypt the session key with the public RSA key
cipher_rsa = PKCS1_OAEP.new(recipient_key)
out_file.write(cipher_rsa.encrypt(session_key))
# Encrypt the data with the AES session key
cipher_aes = AES.new(session_key, AES.MODE_EAX)
cipher_text, tag = cipher_aes.encrypt_and_digest(data)
out_file.write(cipher_aes.nonce)
out_file.write(tag)
out_file.write(cipher_text)
return file_name_new
파일 복호화
@staticmethod
def file_decryption(file_name, code, private_key):
"""
:param file_name:
:param code:
:param private_key:
:return:
"""
with open(file_name, 'rb') as f_in:
#
private_key = RSA.import_key(open(private_key).read(), passphrase=code)
# , , ,
enc_session_key, nonce, tag, cipher_text = [f_in.read(x) for x in (private_key.size_in_bytes(), 16, 16, -1)]
cipher_rsa = PKCS1_OAEP.new(private_key)
session_key = cipher_rsa.decrypt(enc_session_key)
cipher_aes = AES.new(session_key, AES.MODE_EAX, nonce)
#
data = cipher_aes.decrypt_and_verify(cipher_text, tag)
#
out_file_name = file_name.replace('.rsa', '')
with open(out_file_name, 'wb') as f_out:
f_out.write(data)
return out_file_name
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Jupyter 공식 DockerHub에 대한 메모에 기재되어 있다. base-notebook minimal-notebook scipy-notebook tensorflow-notebook datascience-notebook pyspark-notebook all-s...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.