We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce357db commit 8767cd5Copy full SHA for 8767cd5
okta/dpop.py
@@ -86,7 +86,7 @@ def _rotate_keys_internal(self) -> None:
86
Generates a new RSA 2048-bit key pair and exports the public key as JWK.
87
"""
88
logger.info("Generating new RSA 2048-bit key pair for DPoP")
89
- self._rsa_key = RSA.generate(3072)
+ self._rsa_key = RSA.generate(3072)
90
self._public_jwk = self._export_public_jwk()
91
self._key_created_at = time.time()
92
logger.debug(f"DPoP keys generated at {self._key_created_at}")
0 commit comments