파이썬[Python]: cryptography - encrypt_at_time 메서드

cryptography 패키지 - fernet 모듈 - Fernet 클래스 - encrypt_at_time 메서드(method)


/// 설명

생성된 비밀키로 데이터를 암호화 합니다. (현재시간 timestamp 가 포함되어 있습니다.)

※ 형식
fernet.encrypt_at_time(data, current_time)

/// 예제

1
2
3
4
5
6
7
8
9
10
11
12
import time
from cryptography.fernet import Fernet
 
test_str = b'This is a string'
test_key = Fernet.generate_key()
print(test_key)  # b'I-9Uuzop5yK22Ox4qhnrIKUPqtA5KEEe9OwztWUTm50='
 
test_encrypt = Fernet(test_key)
test_encrypted = test_encrypt.encrypt_at_time(test_str, int(time.time()))
print(test_encrypted)
# b'gAAAAABhlOl_ud2a68Qid_2D-wPq9EKsRm4R68Pn1Xk2qK_BKSsQaKMxdbgcKOF7z_Dm1gPd__iyCFQBswJ9nF8NJ0otU09i2jkHHoh73FGzpsqaoqM78A4='
 
cs

* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)


– 당신을 응원합니다. –

댓글

이 블로그의 인기 게시물

파이썬[Python]: 내장함수 - from_bytes 메서드

파이썬[Python]: 내장함수 - __len__ 메서드

파이썬[Python]: kivy - 한글 사용

C 언어: sin 함수, cos 함수, tan 함수

파이썬[Python]: 내장함수 - bit_length 메서드