Skip to content

Commit

Permalink
cryptosign authextra allow arbitrary keys (#1411)
Browse files Browse the repository at this point in the history
  • Loading branch information
om26er committed Aug 18, 2020
1 parent c53de73 commit d75be09
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions autobahn/wamp/auth.py
Expand Up @@ -157,11 +157,6 @@ def __init__(self, **kw):
raise ValueError(
"Must provide '{}' for cryptosign".format(key)
)
for key in kw.get('authextra', dict()):
if key not in ['pubkey', 'channel_binding']:
raise ValueError(
"Unexpected key '{}' in 'authextra'".format(key)
)

from autobahn.wamp.cryptosign import SigningKey
self._privkey = SigningKey.from_key_bytes(
Expand Down

0 comments on commit d75be09

Please sign in to comment.