File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 28
28
class EncryptionSuite (Enum ):
29
29
"""Static definition of encryption algorithm details.
30
30
31
+ .. warning:: These members must only be used as part of an AlgorithmSuite.
32
+
31
33
:param algorithm: Encryption algorithm to use
32
34
:type algorithm: cryptography.io ciphers algorithm object
33
35
:param mode: Encryption mode in which to operate
@@ -73,6 +75,8 @@ def valid_kdf(self, kdf):
73
75
class KDFSuite (Enum ):
74
76
"""Static definition of key derivation algorithm details.
75
77
78
+ .. warning:: These members must only be used as part of an AlgorithmSuite.
79
+
76
80
:param algorithm: KDF algorithm to use
77
81
:type algorithm: cryptography.io KDF object
78
82
:param int input_length: Number of bytes of input data to feed into KDF function
@@ -108,6 +112,8 @@ def input_length(self, encryption):
108
112
class AuthenticationSuite (Enum ):
109
113
"""Static definition of authentication algorithm details.
110
114
115
+ .. warning:: These members must only be used as part of an AlgorithmSuite.
116
+
111
117
:param algorithm: Information needed by signing algorithm to define behavior
112
118
:type algorithm: may vary (currently only ECC curve object)
113
119
:param hash_algorithm: Hash algorithm to use in signature
You can’t perform that action at this time.
0 commit comments