mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-11 01:07:36 +08:00
12 lines
182 B
Python
12 lines
182 B
Python
"""Encryption module that does nothing"""
|
|
|
|
def aesEncrypt(data, key):
|
|
return data
|
|
|
|
def aesDecrypt(data, key):
|
|
return data
|
|
|
|
has_aes = False
|
|
|
|
def getKeyLength():
|
|
return 32
|