mirror of https://github.com/morpheus65535/bazarr
13 lines
182 B
Python
13 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
|