File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 15
15
from .utils import split_token
16
16
17
17
try :
18
- from builtins import hex , str , zip
18
+ from builtins import hex
19
+ from builtins import str
20
+ from builtins import zip
19
21
except ImportError :
20
22
pass
21
23
Original file line number Diff line number Diff line change 1
1
from cryptography .exceptions import InvalidSignature
2
2
from cryptography .hazmat .primitives import hashes
3
3
from cryptography .hazmat .primitives .asymmetric import ec
4
- from cryptography .hazmat .primitives .asymmetric .utils import decode_dss_signature
5
- from cryptography .hazmat .primitives .asymmetric .utils import encode_dss_signature
4
+ from cryptography .hazmat .primitives .asymmetric .utils import \
5
+ decode_dss_signature
6
+ from cryptography .hazmat .primitives .asymmetric .utils import \
7
+ encode_dss_signature
6
8
from cryptography .utils import int_from_bytes
7
9
from cryptography .utils import int_to_bytes
8
10
Original file line number Diff line number Diff line change 23
23
from .utils import alg2keytype
24
24
25
25
try :
26
- from builtins import object , str
26
+ from builtins import object
27
+ from builtins import str
27
28
except ImportError :
28
29
pass
29
30
Original file line number Diff line number Diff line change 2
2
import sys
3
3
4
4
import pytest
5
-
6
5
import test_vector
6
+
7
7
from cryptojwt import utils
8
8
from cryptojwt .exception import JWKESTException
9
9
from cryptojwt .jwk .jwk import key_from_jwk_dict
You can’t perform that action at this time.
0 commit comments