We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e53d848 commit b9518eaCopy full SHA for b9518ea
src/fabric_cli/core/fab_auth.py
@@ -731,8 +731,8 @@ def _load_pem_certificate(
731
)
732
cert = x509.load_pem_x509_certificate(certificate_data, default_backend())
733
fingerprint = cert.fingerprint(
734
- hashes.SHA1()
735
- ) # CodeQL [SM02167] SHA‑1 thumbprint is only a certificate identifier required by MSAL/Microsoft Entra, not a cryptographic operation
+ hashes.SHA1() # CodeQL [SM02167] SHA‑1 thumbprint is only a certificate identifier required by MSAL/Microsoft Entra, not a cryptographic operation
+ )
736
return self._Cert(certificate_data, private_key, fingerprint)
737
738
def _load_pkcs12_certificate(
0 commit comments