fixed "Unable to parse an RSA_JWK from key"
This commit is contained in:
parent
9f89d2d221
commit
09c43a3095
@ -167,7 +167,7 @@ def test_our_config_token():
|
|||||||
response_public_cert = response_certificate_configuration.get('publicCert').encode('utf-8')
|
response_public_cert = response_certificate_configuration.get('publicCert').encode('utf-8')
|
||||||
|
|
||||||
response_parsed_cert = x509.load_pem_x509_certificate(response_public_cert, default_backend())
|
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
|
### build payload
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user