blob: a1e8430860337967d75e44ad21958974e91e5199 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
From 0705d401e503f7620d02affe49ce9a85cb0d6b5b Mon Sep 17 00:00:00 2001
From: jxy_git <jiangxinyu@kylinos.cn>
Date: Tue, 7 Mar 2023 17:50:41 +0800
Subject: [PATCH] modify the utils interface
---
ipalib/x509.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ipalib/x509.py b/ipalib/x509.py
index 402e0e9..2d9b328 100644
--- a/ipalib/x509.py
+++ b/ipalib/x509.py
@@ -41,7 +41,7 @@ import base64
import re
from cryptography import x509 as crypto_x509
-from cryptography import utils as crypto_utils
+# from cryptography import utils as crypto_utils
from cryptography.hazmat.backends import default_backend
from cryptography.hazmat.primitives import serialization
from cryptography.hazmat.primitives.serialization import (
@@ -88,7 +88,7 @@ SAN_UPN = '1.3.6.1.4.1.311.20.2.3'
SAN_KRB5PRINCIPALNAME = '1.3.6.1.5.2.2'
-@crypto_utils.register_interface(crypto_x509.Certificate)
+# @crypto_utils.register_interface(crypto_x509.Certificate)
class IPACertificate:
"""
A proxy class wrapping a python-cryptography certificate representation for
--
2.39.1
|