Skip to content

Conversation

@blink1073
Copy link
Owner

No description provided.

def _create_socket(self, sock):
self.socket = ssl.wrap_socket(
context = ssl.create_default_context(purpose=ssl.Purpose.CLIENT_AUTH, cafile=self.certfile)
self.socket = context.wrap_socket(

Check failure

Code scanning / CodeQL

Use of insecure SSL/TLS version

Insecure SSL/TLS protocol version TLSv1 allowed by [call to ssl.create_default_context](1). Insecure SSL/TLS protocol version TLSv1_1 allowed by [call to ssl.create_default_context](1).
ciphers=self.auth_suite.ciphers
)
context = ssl.create_default_context(purpose=ssl.Purpose.SERVER_AUTH, cafile=self.config.settings.get('certificate_path'))
self._socket = context.wrap_socket(self._socket,

Check failure

Code scanning / CodeQL

Use of insecure SSL/TLS version

Insecure SSL/TLS protocol version TLSv1 allowed by [call to ssl.create_default_context](1). Insecure SSL/TLS protocol version TLSv1_1 allowed by [call to ssl.create_default_context](1).
@blink1073 blink1073 closed this Nov 16, 2023
@blink1073 blink1073 reopened this Mar 29, 2024
The load_der_public_key method and the load_pem_private_key method were
removed from Backend class in cryptography 42.0.0[1].

Closes OpenKMIP#713

[1] pyca/cryptography@41daf2d
@blink1073 blink1073 closed this May 23, 2024
@blink1073 blink1073 reopened this Jul 25, 2024
@blink1073 blink1073 closed this Jan 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants