This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Blue-Archive---Asset-Downlo…/lib/AESEncryptionService.py
2021-11-11 17:28:23 +01:00

15 lines
411 B
Python

from Crypto.Cipher import AES
# Namespace: MX.Data AESEncryptionService
AESKey: bytes = "GameDevelopmentDepartment".encode("utf8")
AESIV: bytes = "TendouAris".encode("utf8")
def EncryptStringToBytes_Aes(plainText: str, Key: bytes, IV: bytes) -> bytes:
# same as StringCipher?
pass
def DecryptStringFromBytes_Aes(cipherText: bytes, Key: bytes, IV: bytes) -> str:
# same as StringCipher?
pass