File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ class V3DefaultCryptoMaterialsManager(CryptoMaterialsManager):
40
40
41
41
master_key_provider = attr .ib (validator = attr .validators .instance_of (MasterKeyProvider ))
42
42
43
- def _generate_signing_key_and_update_encryption_context (self , algorithm , encryption_context ): # pylint: disable=no-self-use
43
+ # pylint: disable=no-self-use
44
+ def _generate_signing_key_and_update_encryption_context (self , algorithm , encryption_context ):
44
45
"""Generates a signing key based on the provided algorithm.
45
46
46
47
:param algorithm: Algorithm for which to generate signing key
@@ -111,7 +112,8 @@ def get_encryption_materials(self, request):
111
112
signing_key = signing_key ,
112
113
)
113
114
114
- def _load_verification_key_from_encryption_context (self , algorithm , encryption_context ): # pylint: disable=no-self-use
115
+ # pylint: disable=no-self-use
116
+ def _load_verification_key_from_encryption_context (self , algorithm , encryption_context ):
115
117
"""Loads the verification key from the encryption context if used by algorithm suite.
116
118
117
119
:param algorithm: Algorithm for which to generate signing key
You can’t perform that action at this time.
0 commit comments