diff --git a/jsonldsig.py b/jsonldsig.py index df7e93a5..a9e14ecb 100644 --- a/jsonldsig.py +++ b/jsonldsig.py @@ -93,6 +93,7 @@ def _verifyJws(payload: {}, jwsSignature: str, publicKeyPem: str) -> bool: """ Verifies a signature using the given public key """ + print('inbox signature: ' + str(jwsSignature)) encodedHeader, encodedSignature = jwsSignature.split(b'..') signature = _b64safeDecode(encodedSignature) payload = b'.'.join([encodedHeader, payload])