mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
26 lines
532 B
Python
Executable File
26 lines
532 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
import pymacaroons
|
|
|
|
if len(sys.argv) == 1:
|
|
sys.stderr.write("usage: %s macaroon [key]\n" % (sys.argv[0],))
|
|
sys.exit(1)
|
|
|
|
macaroon_string = sys.argv[1]
|
|
key = sys.argv[2] if len(sys.argv) > 2 else None
|
|
|
|
macaroon = pymacaroons.Macaroon.deserialize(macaroon_string)
|
|
print(macaroon.inspect())
|
|
|
|
print("")
|
|
|
|
verifier = pymacaroons.Verifier()
|
|
verifier.satisfy_general(lambda c: True)
|
|
try:
|
|
verifier.verify(macaroon, key)
|
|
print("Signature is correct")
|
|
except Exception as e:
|
|
print(str(e))
|