mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-27 18:17:46 +00: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
|