파이썬[Python]: cryptography - decrypt 메서드
cryptography 패키지 - fernet 모듈 - MultiFernet 클래스 - decrypt 메서드(method)
/// 설명
생성된 다수의 비밀키로 암호화한 데이터를 같은 비밀키로 복호화 합니다. 인자 ttl(secondes) 이 주어진다면 그 시간안에 메세지를 확인하여야 합니다.
※ 형식
multifernet.decrypt(token)
multifernet.decrypt(token, ttl=None)
※ 형식
multifernet.decrypt(token)
multifernet.decrypt(token, ttl=None)
/// 예제
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | from cryptography.fernet import Fernet, MultiFernet test_str = b'This is a string' # generating keys test_key1 = Fernet(Fernet.generate_key()) test_key2 = Fernet(Fernet.generate_key()) test_list = [test_key1, test_key2] test_encrypt = MultiFernet(test_list) test_encrypted = test_encrypt.encrypt(test_str) print(test_encrypted) # b'gAAAAABhlPa3wt67NlHQdxo_4bfZZgEYbrhvHR3kkb74vgkPHdEN_eXwLT7Gn4rrY_shtb7JDPS9KXxyklHQ2jz8miYyri1MIpIk5wQuXesMxNgKcb-02hM=' test_decrypted = test_encrypt.decrypt(test_encrypted) print(test_decrypted) # b'This is a string' | cs |
* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)
– 당신을 응원합니다. –
댓글
댓글 쓰기