8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-30 11:04:38 +00:00

Meilleure gestion du AESField

This commit is contained in:
Hugo LEVY-FALK 2018-01-27 00:07:28 +01:00 committed by root
parent f016882597
commit 6d335881a6

View file

@ -27,6 +27,7 @@ def encrypt(key, s):
def decrypt(key, s):
obj = AES.new(key)
ss = obj.decrypt(s)
print(ss)
return ss.split(bytes(EOD, 'utf-8'))[0]
@ -35,10 +36,6 @@ class AESEncryptedField(models.CharField):
setattr(instance, self.name,
binascii.b2a_base64(encrypt(settings.AES_KEY, data)))
def value_from_object(self, obj):
return decrypt(settings.AES_KEY,
binascii.a2b_base64(getattr(obj, self.attname))).decode('utf-8')
def to_python(self, value):
if value is None:
return None