File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 15
15
packages = find_packages ('src/' ),
16
16
package_dir = {'' : 'src' },
17
17
install_requires = [
18
- "oic>=0.8.4.0" ,
19
18
"pyop==2.0.1" ,
20
- "pyjwkest==1.1.5" ,
21
19
"pysaml2==4.2.0" ,
20
+ "pycryptodomex" ,
22
21
"requests" ,
23
22
"PyYAML" ,
24
23
"gunicorn" ,
Original file line number Diff line number Diff line change 10
10
from http .cookies import SimpleCookie
11
11
from lzma import LZMADecompressor , LZMACompressor
12
12
13
- from Crypto import Random
14
- from Crypto .Cipher import AES
13
+ from Cryptodome import Random
14
+ from Cryptodome .Cipher import AES
15
15
16
16
from .exception import SATOSAStateError
17
17
from .logging_util import satosa_logging
Original file line number Diff line number Diff line change 7
7
import oic
8
8
import pytest
9
9
import responses
10
- from Crypto .PublicKey import RSA
10
+ from Cryptodome .PublicKey import RSA
11
11
from jwkest .jwk import RSAKey
12
12
from oic .oic .message import RegistrationRequest , IdToken
13
13
from oic .utils .authn .client import CLIENT_AUTHN_METHOD
Original file line number Diff line number Diff line change 6
6
from datetime import datetime
7
7
from urllib .parse import parse_qsl , urlparse
8
8
9
- from Crypto .PublicKey import RSA
9
+ from Cryptodome .PublicKey import RSA
10
10
from bs4 import BeautifulSoup
11
11
from saml2 import server , BINDING_HTTP_POST , BINDING_HTTP_REDIRECT
12
12
from saml2 .authn_context import AuthnBroker , authn_context_class_ref , PASSWORD
You can’t perform that action at this time.
0 commit comments