fixed "Unable to parse an RSA_JWK from key"

This commit is contained in:
Oscar Krause 2025-03-20 13:14:14 +01:00
parent 9f89d2d221
commit 09c43a3095

View File

@ -167,7 +167,7 @@ def test_our_config_token():
response_public_cert = response_certificate_configuration.get('publicCert').encode('utf-8')
response_parsed_cert = x509.load_pem_x509_certificate(response_public_cert, default_backend())
jwt_decode_key = jwk.construct(response_parsed_cert, algorithm=ALGORITHMS.RS256)
jwt_decode_key = jwk.construct(response_parsed_cert.public_bytes(encoding=Encoding.PEM), algorithm=ALGORITHMS.RS256)
### build payload