13 lines
264 B
Python
13 lines
264 B
Python
|
from cryptography.fernet import Fernet
|
||
|
|
||
|
from odoo import api, models
|
||
|
|
||
|
|
||
|
class Key(models.Model):
|
||
|
_inherit = 'certificate.key'
|
||
|
|
||
|
@api.model
|
||
|
def _account_edi_fernet_decrypt(self, key, message):
|
||
|
key = Fernet(key)
|
||
|
return key.decrypt(message)
|