- AES 복호화 코드- Web site 에서도 가능 : https://www.devglan.com/online-tools/aes-encryption-decryption from Crypto.Cipher import AESfrom Crypto.Util.Padding import unpaddef aes_decrypt(hex_key, hex_ciphertext, hex_iv): # 1. 헥사 문자열을 바이트로 변환 key = bytes.fromhex(hex_key) print(len(key)) ciphertext = bytes.fromhex(hex_ciphertext) iv = bytes.fromhex(hex_iv) # 2. AES 복호화 객체 생성 (CBC 모드) ci..