Skip to content

Commit

Permalink
fix nacl.secret import
Browse files Browse the repository at this point in the history
  • Loading branch information
dantownsend committed Sep 9, 2024
1 parent 8f341a8 commit ca50803
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion piccolo_api/encryption/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ def __init__(self, encryption_key: bytes):
@staticmethod
def get_new_key() -> bytes:
nacl_utils = get_nacl_utils()
return nacl_utils.random(nacl.secret.Aead.KEY_SIZE) # type: ignore
nacl_secret = get_nacl_secret()
return nacl_utils.random(nacl_secret.Aead.KEY_SIZE) # type: ignore

def _get_nacl_box(self) -> nacl.secret.Aead:
nacl_secret = get_nacl_secret()
Expand Down

0 comments on commit ca50803

Please sign in to comment.