def decode_value()

in userbeacon/jwksutils.py [0:0]


def decode_value(val):
    decoded = base64.urlsafe_b64decode(ensure_bytes(val) + b'==')
    return int.from_bytes(decoded, 'big')