Appease formatter

This commit is contained in:
decentral1se 2021-04-15 14:27:58 +02:00
parent 63c7384e50
commit 59ce5900e0
Signed by: decentral1se
GPG Key ID: 92DAD76BD9567B8A
1 changed files with 1 additions and 2 deletions

View File

@ -18,7 +18,6 @@ class VAPIDKeyset(models.Model):
padding = len(key_str) % 4
key_str += b"=" * padding
key = SigningKey.from_string(
urlsafe_b64decode(key_str),
curve=NIST256p
urlsafe_b64decode(key_str), curve=NIST256p
).get_verifying_key()
return urlsafe_b64encode(b"\x04" + key.to_string()).strip(b"=")