You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/beaker/crypto/noencryption.py

13 lines
182 B

"""Encryption module that does nothing"""
def aesEncrypt(data, key):
return data
def aesDecrypt(data, key):
return data
has_aes = False
def getKeyLength():
return 32