Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add python 3.12 support #1

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open

Add python 3.12 support #1

wants to merge 34 commits into from

Conversation

blink1073
Copy link
Owner

No description provided.

kmip/services/kmip_client.py Fixed Show fixed Hide fixed
kmip/services/server/server.py Fixed Show fixed Hide fixed
kmip/services/kmip_client.py Fixed Show fixed Hide fixed
kmip/services/server/server.py Fixed Show fixed Hide fixed
@@ -285,13 +285,10 @@
six.reraise(*last_error)

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 High

Insecure SSL/TLS protocol version TLSv1 allowed by
call to ssl.create_default_context
.
Insecure SSL/TLS protocol version TLSv1_1 allowed by
call to ssl.create_default_context
.
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 High

Insecure SSL/TLS protocol version TLSv1 allowed by
call to ssl.create_default_context
.
Insecure SSL/TLS protocol version TLSv1_1 allowed by
call to ssl.create_default_context
.
@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
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.

5 participants