Skip to content

Commit

Permalink
Merge pull request #7568 from chrisburr/support-m2crypto-0.40
Browse files Browse the repository at this point in the history
[8.0] Support M2Crypto 0.40.0+
  • Loading branch information
fstagni authored Apr 15, 2024
2 parents f19856b + 4353699 commit 24f11c3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/DIRAC/Core/Security/m2crypto/X509CRL.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import re
import datetime

import M2Crypto
import M2Crypto.X509
from DIRAC import S_OK, S_ERROR
from DIRAC.Core.Utilities import DErrno
from DIRAC.Core.Utilities.File import secureOpenForWrite
Expand Down
2 changes: 1 addition & 1 deletion src/DIRAC/Core/Security/m2crypto/X509Certificate.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import random
import time

import M2Crypto
import M2Crypto.X509


from DIRAC import S_OK, S_ERROR
Expand Down
2 changes: 1 addition & 1 deletion src/DIRAC/Core/Security/m2crypto/X509Chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import re

import M2Crypto
import M2Crypto.X509


from DIRAC import S_OK, S_ERROR
Expand Down
2 changes: 1 addition & 1 deletion src/DIRAC/Core/Security/m2crypto/X509Request.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""" X509Request is a class for managing X509 requests with their Pkeys.
It's main use is for proxy delegation.
"""
import M2Crypto
import M2Crypto.X509
from DIRAC import S_OK, S_ERROR
from DIRAC.Core.Security.m2crypto import DEFAULT_PROXY_STRENGTH
from DIRAC.Core.Utilities import DErrno
Expand Down
2 changes: 1 addition & 1 deletion src/DIRAC/Core/Tornado/Server/TornadoServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import asyncio
import psutil

import M2Crypto
import M2Crypto.SSL

import tornado.iostream

Expand Down

0 comments on commit 24f11c3

Please sign in to comment.