codekingpro commited on
Commit
027078c
·
verified ·
1 Parent(s): d3de7c1

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. python/py313/Lib/site-packages/Cryptodome/Cipher/AES.py +235 -0
  2. python/py313/Lib/site-packages/Cryptodome/Cipher/AES.pyi +156 -0
  3. python/py313/Lib/site-packages/Cryptodome/Cipher/ARC2.py +175 -0
  4. python/py313/Lib/site-packages/Cryptodome/Cipher/ARC2.pyi +35 -0
  5. python/py313/Lib/site-packages/Cryptodome/Cipher/ARC4.py +136 -0
  6. python/py313/Lib/site-packages/Cryptodome/Cipher/ARC4.pyi +16 -0
  7. python/py313/Lib/site-packages/Cryptodome/Cipher/Blowfish.py +159 -0
  8. python/py313/Lib/site-packages/Cryptodome/Cipher/Blowfish.pyi +35 -0
  9. python/py313/Lib/site-packages/Cryptodome/Cipher/CAST.py +159 -0
  10. python/py313/Lib/site-packages/Cryptodome/Cipher/CAST.pyi +35 -0
  11. python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20.py +291 -0
  12. python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20.pyi +25 -0
  13. python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20_Poly1305.py +334 -0
  14. python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20_Poly1305.pyi +28 -0
  15. python/py313/Lib/site-packages/Cryptodome/Cipher/DES.py +158 -0
  16. python/py313/Lib/site-packages/Cryptodome/Cipher/DES.pyi +35 -0
  17. python/py313/Lib/site-packages/Cryptodome/Cipher/DES3.py +187 -0
  18. python/py313/Lib/site-packages/Cryptodome/Cipher/DES3.pyi +37 -0
  19. python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_OAEP.py +231 -0
  20. python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_OAEP.pyi +35 -0
  21. python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_v1_5.py +189 -0
  22. python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_v1_5.pyi +20 -0
  23. python/py313/Lib/site-packages/Cryptodome/Cipher/Salsa20.py +167 -0
  24. python/py313/Lib/site-packages/Cryptodome/Cipher/Salsa20.pyi +26 -0
  25. python/py313/Lib/site-packages/Cryptodome/Cipher/_ARC4.pyd +0 -0
  26. python/py313/Lib/site-packages/Cryptodome/Cipher/_EKSBlowfish.py +131 -0
  27. python/py313/Lib/site-packages/Cryptodome/Cipher/_EKSBlowfish.pyi +15 -0
  28. python/py313/Lib/site-packages/Cryptodome/Cipher/_Salsa20.pyd +0 -0
  29. python/py313/Lib/site-packages/Cryptodome/Cipher/__init__.py +91 -0
  30. python/py313/Lib/site-packages/Cryptodome/Cipher/__init__.pyi +0 -0
  31. python/py313/Lib/site-packages/Cryptodome/Cipher/_chacha20.pyd +0 -0
  32. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cbc.py +293 -0
  33. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cbc.pyi +25 -0
  34. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ccm.py +671 -0
  35. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ccm.pyi +52 -0
  36. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cfb.py +293 -0
  37. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cfb.pyi +26 -0
  38. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ctr.py +393 -0
  39. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ctr.pyi +27 -0
  40. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_eax.py +408 -0
  41. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_eax.pyi +45 -0
  42. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ecb.py +220 -0
  43. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ecb.pyi +19 -0
  44. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_gcm.py +620 -0
  45. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_gcm.pyi +45 -0
  46. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_kw.py +158 -0
  47. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_kwp.py +135 -0
  48. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ocb.py +532 -0
  49. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ocb.pyi +36 -0
  50. python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ofb.py +282 -0
python/py313/Lib/site-packages/Cryptodome/Cipher/AES.py ADDED
@@ -0,0 +1,235 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/AES.py : AES
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ import sys
24
+
25
+ from Cryptodome.Cipher import _create_cipher
26
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
27
+ VoidPointer, SmartPointer,
28
+ c_size_t, c_uint8_ptr)
29
+
30
+ from Cryptodome.Util import _cpu_features
31
+ from Cryptodome.Random import get_random_bytes
32
+
33
+ MODE_ECB = 1 #: Electronic Code Book (:ref:`ecb_mode`)
34
+ MODE_CBC = 2 #: Cipher-Block Chaining (:ref:`cbc_mode`)
35
+ MODE_CFB = 3 #: Cipher Feedback (:ref:`cfb_mode`)
36
+ MODE_OFB = 5 #: Output Feedback (:ref:`ofb_mode`)
37
+ MODE_CTR = 6 #: Counter mode (:ref:`ctr_mode`)
38
+ MODE_OPENPGP = 7 #: OpenPGP mode (:ref:`openpgp_mode`)
39
+ MODE_CCM = 8 #: Counter with CBC-MAC (:ref:`ccm_mode`)
40
+ MODE_EAX = 9 #: :ref:`eax_mode`
41
+ MODE_SIV = 10 #: Synthetic Initialization Vector (:ref:`siv_mode`)
42
+ MODE_GCM = 11 #: Galois Counter Mode (:ref:`gcm_mode`)
43
+ MODE_OCB = 12 #: Offset Code Book (:ref:`ocb_mode`)
44
+ MODE_KW = 13 #: Key Wrap (:ref:`kw_mode`)
45
+ MODE_KWP = 14 #: Key Wrap with Padding (:ref:`kwp_mode`)
46
+
47
+ _cproto = """
48
+ int AES_start_operation(const uint8_t key[],
49
+ size_t key_len,
50
+ void **pResult);
51
+ int AES_encrypt(const void *state,
52
+ const uint8_t *in,
53
+ uint8_t *out,
54
+ size_t data_len);
55
+ int AES_decrypt(const void *state,
56
+ const uint8_t *in,
57
+ uint8_t *out,
58
+ size_t data_len);
59
+ int AES_stop_operation(void *state);
60
+ """
61
+
62
+
63
+ # Load portable AES
64
+ _raw_aes_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_aes",
65
+ _cproto)
66
+
67
+ # Try to load AES with AES NI instructions
68
+ try:
69
+ _raw_aesni_lib = None
70
+ if _cpu_features.have_aes_ni():
71
+ _raw_aesni_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_aesni",
72
+ _cproto.replace("AES",
73
+ "AESNI"))
74
+ # _raw_aesni may not have been compiled in
75
+ except OSError:
76
+ pass
77
+
78
+
79
+ def _create_base_cipher(dict_parameters):
80
+ """This method instantiates and returns a handle to a low-level
81
+ base cipher. It will absorb named parameters in the process."""
82
+
83
+ use_aesni = dict_parameters.pop("use_aesni", True)
84
+
85
+ try:
86
+ key = dict_parameters.pop("key")
87
+ except KeyError:
88
+ raise TypeError("Missing 'key' parameter")
89
+
90
+ if len(key) not in key_size:
91
+ raise ValueError("Incorrect AES key length (%d bytes)" % len(key))
92
+
93
+ if use_aesni and _raw_aesni_lib:
94
+ start_operation = _raw_aesni_lib.AESNI_start_operation
95
+ stop_operation = _raw_aesni_lib.AESNI_stop_operation
96
+ else:
97
+ start_operation = _raw_aes_lib.AES_start_operation
98
+ stop_operation = _raw_aes_lib.AES_stop_operation
99
+
100
+ cipher = VoidPointer()
101
+ result = start_operation(c_uint8_ptr(key),
102
+ c_size_t(len(key)),
103
+ cipher.address_of())
104
+ if result:
105
+ raise ValueError("Error %X while instantiating the AES cipher"
106
+ % result)
107
+ return SmartPointer(cipher.get(), stop_operation)
108
+
109
+
110
+ def _derive_Poly1305_key_pair(key, nonce):
111
+ """Derive a tuple (r, s, nonce) for a Poly1305 MAC.
112
+
113
+ If nonce is ``None``, a new 16-byte nonce is generated.
114
+ """
115
+
116
+ if len(key) != 32:
117
+ raise ValueError("Poly1305 with AES requires a 32-byte key")
118
+
119
+ if nonce is None:
120
+ nonce = get_random_bytes(16)
121
+ elif len(nonce) != 16:
122
+ raise ValueError("Poly1305 with AES requires a 16-byte nonce")
123
+
124
+ s = new(key[:16], MODE_ECB).encrypt(nonce)
125
+ return key[16:], s, nonce
126
+
127
+
128
+ def new(key, mode, *args, **kwargs):
129
+ """Create a new AES cipher.
130
+
131
+ Args:
132
+ key(bytes/bytearray/memoryview):
133
+ The secret key to use in the symmetric cipher.
134
+
135
+ It must be 16 (*AES-128)*, 24 (*AES-192*) or 32 (*AES-256*) bytes long.
136
+
137
+ For ``MODE_SIV`` only, it doubles to 32, 48, or 64 bytes.
138
+ mode (a ``MODE_*`` constant):
139
+ The chaining mode to use for encryption or decryption.
140
+ If in doubt, use ``MODE_EAX``.
141
+
142
+ Keyword Args:
143
+ iv (bytes/bytearray/memoryview):
144
+ (Only applicable for ``MODE_CBC``, ``MODE_CFB``, ``MODE_OFB``,
145
+ and ``MODE_OPENPGP`` modes).
146
+
147
+ The initialization vector to use for encryption or decryption.
148
+
149
+ For ``MODE_CBC``, ``MODE_CFB``, and ``MODE_OFB`` it must be 16 bytes long.
150
+
151
+ For ``MODE_OPENPGP`` mode only,
152
+ it must be 16 bytes long for encryption
153
+ and 18 bytes for decryption (in the latter case, it is
154
+ actually the *encrypted* IV which was prefixed to the ciphertext).
155
+
156
+ If not provided, a random byte string is generated (you must then
157
+ read its value with the :attr:`iv` attribute).
158
+
159
+ nonce (bytes/bytearray/memoryview):
160
+ (Only applicable for ``MODE_CCM``, ``MODE_EAX``, ``MODE_GCM``,
161
+ ``MODE_SIV``, ``MODE_OCB``, and ``MODE_CTR``).
162
+
163
+ A value that must never be reused for any other encryption done
164
+ with this key (except possibly for ``MODE_SIV``, see below).
165
+
166
+ For ``MODE_EAX``, ``MODE_GCM`` and ``MODE_SIV`` there are no
167
+ restrictions on its length (recommended: **16** bytes).
168
+
169
+ For ``MODE_CCM``, its length must be in the range **[7..13]**.
170
+ Bear in mind that with CCM there is a trade-off between nonce
171
+ length and maximum message size. Recommendation: **11** bytes.
172
+
173
+ For ``MODE_OCB``, its length must be in the range **[1..15]**
174
+ (recommended: **15**).
175
+
176
+ For ``MODE_CTR``, its length must be in the range **[0..15]**
177
+ (recommended: **8**).
178
+
179
+ For ``MODE_SIV``, the nonce is optional, if it is not specified,
180
+ then no nonce is being used, which renders the encryption
181
+ deterministic.
182
+
183
+ If not provided, for modes other than ``MODE_SIV``, a random
184
+ byte string of the recommended length is used (you must then
185
+ read its value with the :attr:`nonce` attribute).
186
+
187
+ segment_size (integer):
188
+ (Only ``MODE_CFB``).The number of **bits** the plaintext and ciphertext
189
+ are segmented in. It must be a multiple of 8.
190
+ If not specified, it will be assumed to be 8.
191
+
192
+ mac_len (integer):
193
+ (Only ``MODE_EAX``, ``MODE_GCM``, ``MODE_OCB``, ``MODE_CCM``)
194
+ Length of the authentication tag, in bytes.
195
+
196
+ It must be even and in the range **[4..16]**.
197
+ The recommended value (and the default, if not specified) is **16**.
198
+
199
+ msg_len (integer):
200
+ (Only ``MODE_CCM``). Length of the message to (de)cipher.
201
+ If not specified, ``encrypt`` must be called with the entire message.
202
+ Similarly, ``decrypt`` can only be called once.
203
+
204
+ assoc_len (integer):
205
+ (Only ``MODE_CCM``). Length of the associated data.
206
+ If not specified, all associated data is buffered internally,
207
+ which may represent a problem for very large messages.
208
+
209
+ initial_value (integer or bytes/bytearray/memoryview):
210
+ (Only ``MODE_CTR``).
211
+ The initial value for the counter. If not present, the cipher will
212
+ start counting from 0. The value is incremented by one for each block.
213
+ The counter number is encoded in big endian mode.
214
+
215
+ counter (object):
216
+ (Only ``MODE_CTR``).
217
+ Instance of ``Cryptodome.Util.Counter``, which allows full customization
218
+ of the counter block. This parameter is incompatible to both ``nonce``
219
+ and ``initial_value``.
220
+
221
+ use_aesni: (boolean):
222
+ Use Intel AES-NI hardware extensions (default: use if available).
223
+
224
+ Returns:
225
+ an AES object, of the applicable mode.
226
+ """
227
+
228
+ kwargs["add_aes_modes"] = True
229
+ return _create_cipher(sys.modules[__name__], key, mode, *args, **kwargs)
230
+
231
+
232
+ # Size of a data block (in bytes)
233
+ block_size = 16
234
+ # Size of a key (in bytes)
235
+ key_size = (16, 24, 32)
python/py313/Lib/site-packages/Cryptodome/Cipher/AES.pyi ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Dict, Optional, Tuple, Union, overload
2
+ from typing_extensions import Literal
3
+
4
+ Buffer=bytes|bytearray|memoryview
5
+
6
+ from Cryptodome.Cipher._mode_ecb import EcbMode
7
+ from Cryptodome.Cipher._mode_cbc import CbcMode
8
+ from Cryptodome.Cipher._mode_cfb import CfbMode
9
+ from Cryptodome.Cipher._mode_ofb import OfbMode
10
+ from Cryptodome.Cipher._mode_ctr import CtrMode
11
+ from Cryptodome.Cipher._mode_openpgp import OpenPgpMode
12
+ from Cryptodome.Cipher._mode_ccm import CcmMode
13
+ from Cryptodome.Cipher._mode_eax import EaxMode
14
+ from Cryptodome.Cipher._mode_gcm import GcmMode
15
+ from Cryptodome.Cipher._mode_siv import SivMode
16
+ from Cryptodome.Cipher._mode_ocb import OcbMode
17
+
18
+ MODE_ECB: Literal[1]
19
+ MODE_CBC: Literal[2]
20
+ MODE_CFB: Literal[3]
21
+ MODE_OFB: Literal[5]
22
+ MODE_CTR: Literal[6]
23
+ MODE_OPENPGP: Literal[7]
24
+ MODE_CCM: Literal[8]
25
+ MODE_EAX: Literal[9]
26
+ MODE_SIV: Literal[10]
27
+ MODE_GCM: Literal[11]
28
+ MODE_OCB: Literal[12]
29
+
30
+ # MODE_ECB
31
+ @overload
32
+ def new(key: Buffer,
33
+ mode: Literal[1],
34
+ use_aesni : bool = ...) -> \
35
+ EcbMode: ...
36
+
37
+ # MODE_CBC
38
+ @overload
39
+ def new(key: Buffer,
40
+ mode: Literal[2],
41
+ iv : Optional[Buffer] = ...,
42
+ use_aesni : bool = ...) -> \
43
+ CbcMode: ...
44
+
45
+ @overload
46
+ def new(key: Buffer,
47
+ mode: Literal[2],
48
+ IV : Optional[Buffer] = ...,
49
+ use_aesni : bool = ...) -> \
50
+ CbcMode: ...
51
+
52
+ # MODE_CFB
53
+ @overload
54
+ def new(key: Buffer,
55
+ mode: Literal[3],
56
+ iv : Optional[Buffer] = ...,
57
+ segment_size : int = ...,
58
+ use_aesni : bool = ...) -> \
59
+ CfbMode: ...
60
+
61
+ @overload
62
+ def new(key: Buffer,
63
+ mode: Literal[3],
64
+ IV : Optional[Buffer] = ...,
65
+ segment_size : int = ...,
66
+ use_aesni : bool = ...) -> \
67
+ CfbMode: ...
68
+
69
+ # MODE_OFB
70
+ @overload
71
+ def new(key: Buffer,
72
+ mode: Literal[5],
73
+ iv : Optional[Buffer] = ...,
74
+ use_aesni : bool = ...) -> \
75
+ OfbMode: ...
76
+
77
+ @overload
78
+ def new(key: Buffer,
79
+ mode: Literal[5],
80
+ IV : Optional[Buffer] = ...,
81
+ use_aesni : bool = ...) -> \
82
+ OfbMode: ...
83
+
84
+ # MODE_CTR
85
+ @overload
86
+ def new(key: Buffer,
87
+ mode: Literal[6],
88
+ nonce : Optional[Buffer] = ...,
89
+ initial_value : Union[int, Buffer] = ...,
90
+ counter : Dict = ...,
91
+ use_aesni : bool = ...) -> \
92
+ CtrMode: ...
93
+
94
+ # MODE_OPENPGP
95
+ @overload
96
+ def new(key: Buffer,
97
+ mode: Literal[7],
98
+ iv : Optional[Buffer] = ...,
99
+ use_aesni : bool = ...) -> \
100
+ OpenPgpMode: ...
101
+
102
+ @overload
103
+ def new(key: Buffer,
104
+ mode: Literal[7],
105
+ IV : Optional[Buffer] = ...,
106
+ use_aesni : bool = ...) -> \
107
+ OpenPgpMode: ...
108
+
109
+ # MODE_CCM
110
+ @overload
111
+ def new(key: Buffer,
112
+ mode: Literal[8],
113
+ nonce : Optional[Buffer] = ...,
114
+ mac_len : int = ...,
115
+ assoc_len : int = ...,
116
+ use_aesni : bool = ...) -> \
117
+ CcmMode: ...
118
+
119
+ # MODE_EAX
120
+ @overload
121
+ def new(key: Buffer,
122
+ mode: Literal[9],
123
+ nonce : Optional[Buffer] = ...,
124
+ mac_len : int = ...,
125
+ use_aesni : bool = ...) -> \
126
+ EaxMode: ...
127
+
128
+ # MODE_GCM
129
+ @overload
130
+ def new(key: Buffer,
131
+ mode: Literal[10],
132
+ nonce : Optional[Buffer] = ...,
133
+ use_aesni : bool = ...) -> \
134
+ SivMode: ...
135
+
136
+ # MODE_SIV
137
+ @overload
138
+ def new(key: Buffer,
139
+ mode: Literal[11],
140
+ nonce : Optional[Buffer] = ...,
141
+ mac_len : int = ...,
142
+ use_aesni : bool = ...) -> \
143
+ GcmMode: ...
144
+
145
+ # MODE_OCB
146
+ @overload
147
+ def new(key: Buffer,
148
+ mode: Literal[12],
149
+ nonce : Optional[Buffer] = ...,
150
+ mac_len : int = ...,
151
+ use_aesni : bool = ...) -> \
152
+ OcbMode: ...
153
+
154
+
155
+ block_size: int
156
+ key_size: Tuple[int, int, int]
python/py313/Lib/site-packages/Cryptodome/Cipher/ARC2.py ADDED
@@ -0,0 +1,175 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/ARC2.py : ARC2.py
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+ """
23
+ Module's constants for the modes of operation supported with ARC2:
24
+
25
+ :var MODE_ECB: :ref:`Electronic Code Book (ECB) <ecb_mode>`
26
+ :var MODE_CBC: :ref:`Cipher-Block Chaining (CBC) <cbc_mode>`
27
+ :var MODE_CFB: :ref:`Cipher FeedBack (CFB) <cfb_mode>`
28
+ :var MODE_OFB: :ref:`Output FeedBack (OFB) <ofb_mode>`
29
+ :var MODE_CTR: :ref:`CounTer Mode (CTR) <ctr_mode>`
30
+ :var MODE_OPENPGP: :ref:`OpenPGP Mode <openpgp_mode>`
31
+ :var MODE_EAX: :ref:`EAX Mode <eax_mode>`
32
+ """
33
+
34
+ import sys
35
+
36
+ from Cryptodome.Cipher import _create_cipher
37
+ from Cryptodome.Util.py3compat import byte_string
38
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
39
+ VoidPointer, SmartPointer,
40
+ c_size_t, c_uint8_ptr)
41
+
42
+ _raw_arc2_lib = load_pycryptodome_raw_lib(
43
+ "Cryptodome.Cipher._raw_arc2",
44
+ """
45
+ int ARC2_start_operation(const uint8_t key[],
46
+ size_t key_len,
47
+ size_t effective_key_len,
48
+ void **pResult);
49
+ int ARC2_encrypt(const void *state,
50
+ const uint8_t *in,
51
+ uint8_t *out,
52
+ size_t data_len);
53
+ int ARC2_decrypt(const void *state,
54
+ const uint8_t *in,
55
+ uint8_t *out,
56
+ size_t data_len);
57
+ int ARC2_stop_operation(void *state);
58
+ """
59
+ )
60
+
61
+
62
+ def _create_base_cipher(dict_parameters):
63
+ """This method instantiates and returns a handle to a low-level
64
+ base cipher. It will absorb named parameters in the process."""
65
+
66
+ try:
67
+ key = dict_parameters.pop("key")
68
+ except KeyError:
69
+ raise TypeError("Missing 'key' parameter")
70
+
71
+ effective_keylen = dict_parameters.pop("effective_keylen", 1024)
72
+
73
+ if len(key) not in key_size:
74
+ raise ValueError("Incorrect ARC2 key length (%d bytes)" % len(key))
75
+
76
+ if not (40 <= effective_keylen <= 1024):
77
+ raise ValueError("'effective_key_len' must be at least 40 and no larger than 1024 "
78
+ "(not %d)" % effective_keylen)
79
+
80
+ start_operation = _raw_arc2_lib.ARC2_start_operation
81
+ stop_operation = _raw_arc2_lib.ARC2_stop_operation
82
+
83
+ cipher = VoidPointer()
84
+ result = start_operation(c_uint8_ptr(key),
85
+ c_size_t(len(key)),
86
+ c_size_t(effective_keylen),
87
+ cipher.address_of())
88
+ if result:
89
+ raise ValueError("Error %X while instantiating the ARC2 cipher"
90
+ % result)
91
+
92
+ return SmartPointer(cipher.get(), stop_operation)
93
+
94
+
95
+ def new(key, mode, *args, **kwargs):
96
+ """Create a new RC2 cipher.
97
+
98
+ :param key:
99
+ The secret key to use in the symmetric cipher.
100
+ Its length can vary from 5 to 128 bytes; the actual search space
101
+ (and the cipher strength) can be reduced with the ``effective_keylen`` parameter.
102
+ :type key: bytes, bytearray, memoryview
103
+
104
+ :param mode:
105
+ The chaining mode to use for encryption or decryption.
106
+ :type mode: One of the supported ``MODE_*`` constants
107
+
108
+ :Keyword Arguments:
109
+ * **iv** (*bytes*, *bytearray*, *memoryview*) --
110
+ (Only applicable for ``MODE_CBC``, ``MODE_CFB``, ``MODE_OFB``,
111
+ and ``MODE_OPENPGP`` modes).
112
+
113
+ The initialization vector to use for encryption or decryption.
114
+
115
+ For ``MODE_CBC``, ``MODE_CFB``, and ``MODE_OFB`` it must be 8 bytes long.
116
+
117
+ For ``MODE_OPENPGP`` mode only,
118
+ it must be 8 bytes long for encryption
119
+ and 10 bytes for decryption (in the latter case, it is
120
+ actually the *encrypted* IV which was prefixed to the ciphertext).
121
+
122
+ If not provided, a random byte string is generated (you must then
123
+ read its value with the :attr:`iv` attribute).
124
+
125
+ * **nonce** (*bytes*, *bytearray*, *memoryview*) --
126
+ (Only applicable for ``MODE_EAX`` and ``MODE_CTR``).
127
+
128
+ A value that must never be reused for any other encryption done
129
+ with this key.
130
+
131
+ For ``MODE_EAX`` there are no
132
+ restrictions on its length (recommended: **16** bytes).
133
+
134
+ For ``MODE_CTR``, its length must be in the range **[0..7]**.
135
+
136
+ If not provided for ``MODE_EAX``, a random byte string is generated (you
137
+ can read it back via the ``nonce`` attribute).
138
+
139
+ * **effective_keylen** (*integer*) --
140
+ Optional. Maximum strength in bits of the actual key used by the ARC2 algorithm.
141
+ If the supplied ``key`` parameter is longer (in bits) of the value specified
142
+ here, it will be weakened to match it.
143
+ If not specified, no limitation is applied.
144
+
145
+ * **segment_size** (*integer*) --
146
+ (Only ``MODE_CFB``).The number of **bits** the plaintext and ciphertext
147
+ are segmented in. It must be a multiple of 8.
148
+ If not specified, it will be assumed to be 8.
149
+
150
+ * **mac_len** : (*integer*) --
151
+ (Only ``MODE_EAX``)
152
+ Length of the authentication tag, in bytes.
153
+ It must be no longer than 8 (default).
154
+
155
+ * **initial_value** : (*integer*) --
156
+ (Only ``MODE_CTR``). The initial value for the counter within
157
+ the counter block. By default it is **0**.
158
+
159
+ :Return: an ARC2 object, of the applicable mode.
160
+ """
161
+
162
+ return _create_cipher(sys.modules[__name__], key, mode, *args, **kwargs)
163
+
164
+ MODE_ECB = 1
165
+ MODE_CBC = 2
166
+ MODE_CFB = 3
167
+ MODE_OFB = 5
168
+ MODE_CTR = 6
169
+ MODE_OPENPGP = 7
170
+ MODE_EAX = 9
171
+
172
+ # Size of a data block (in bytes)
173
+ block_size = 8
174
+ # Size of a key (in bytes)
175
+ key_size = range(5, 128 + 1)
python/py313/Lib/site-packages/Cryptodome/Cipher/ARC2.pyi ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Dict, Iterable, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ from Cryptodome.Cipher._mode_ecb import EcbMode
6
+ from Cryptodome.Cipher._mode_cbc import CbcMode
7
+ from Cryptodome.Cipher._mode_cfb import CfbMode
8
+ from Cryptodome.Cipher._mode_ofb import OfbMode
9
+ from Cryptodome.Cipher._mode_ctr import CtrMode
10
+ from Cryptodome.Cipher._mode_openpgp import OpenPgpMode
11
+ from Cryptodome.Cipher._mode_eax import EaxMode
12
+
13
+ ARC2Mode = int
14
+
15
+ MODE_ECB: ARC2Mode
16
+ MODE_CBC: ARC2Mode
17
+ MODE_CFB: ARC2Mode
18
+ MODE_OFB: ARC2Mode
19
+ MODE_CTR: ARC2Mode
20
+ MODE_OPENPGP: ARC2Mode
21
+ MODE_EAX: ARC2Mode
22
+
23
+ def new(key: Buffer,
24
+ mode: ARC2Mode,
25
+ iv : Optional[Buffer] = ...,
26
+ IV : Optional[Buffer] = ...,
27
+ nonce : Optional[Buffer] = ...,
28
+ segment_size : int = ...,
29
+ mac_len : int = ...,
30
+ initial_value : Union[int, Buffer] = ...,
31
+ counter : Dict = ...) -> \
32
+ Union[EcbMode, CbcMode, CfbMode, OfbMode, CtrMode, OpenPgpMode]: ...
33
+
34
+ block_size: int
35
+ key_size: Iterable[int]
python/py313/Lib/site-packages/Cryptodome/Cipher/ARC4.py ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/ARC4.py : ARC4
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib, VoidPointer,
24
+ create_string_buffer, get_raw_buffer,
25
+ SmartPointer, c_size_t, c_uint8_ptr)
26
+
27
+
28
+ _raw_arc4_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._ARC4", """
29
+ int ARC4_stream_encrypt(void *rc4State, const uint8_t in[],
30
+ uint8_t out[], size_t len);
31
+ int ARC4_stream_init(uint8_t *key, size_t keylen,
32
+ void **pRc4State);
33
+ int ARC4_stream_destroy(void *rc4State);
34
+ """)
35
+
36
+
37
+ class ARC4Cipher:
38
+ """ARC4 cipher object. Do not create it directly. Use
39
+ :func:`Cryptodome.Cipher.ARC4.new` instead.
40
+ """
41
+
42
+ def __init__(self, key, *args, **kwargs):
43
+ """Initialize an ARC4 cipher object
44
+
45
+ See also `new()` at the module level."""
46
+
47
+ if len(args) > 0:
48
+ ndrop = args[0]
49
+ args = args[1:]
50
+ else:
51
+ ndrop = kwargs.pop('drop', 0)
52
+
53
+ if len(key) not in key_size:
54
+ raise ValueError("Incorrect ARC4 key length (%d bytes)" %
55
+ len(key))
56
+
57
+ self._state = VoidPointer()
58
+ result = _raw_arc4_lib.ARC4_stream_init(c_uint8_ptr(key),
59
+ c_size_t(len(key)),
60
+ self._state.address_of())
61
+ if result != 0:
62
+ raise ValueError("Error %d while creating the ARC4 cipher"
63
+ % result)
64
+ self._state = SmartPointer(self._state.get(),
65
+ _raw_arc4_lib.ARC4_stream_destroy)
66
+
67
+ if ndrop > 0:
68
+ # This is OK even if the cipher is used for decryption,
69
+ # since encrypt and decrypt are actually the same thing
70
+ # with ARC4.
71
+ self.encrypt(b'\x00' * ndrop)
72
+
73
+ self.block_size = 1
74
+ self.key_size = len(key)
75
+
76
+ def encrypt(self, plaintext):
77
+ """Encrypt a piece of data.
78
+
79
+ :param plaintext: The data to encrypt, of any size.
80
+ :type plaintext: bytes, bytearray, memoryview
81
+ :returns: the encrypted byte string, of equal length as the
82
+ plaintext.
83
+ """
84
+
85
+ ciphertext = create_string_buffer(len(plaintext))
86
+ result = _raw_arc4_lib.ARC4_stream_encrypt(self._state.get(),
87
+ c_uint8_ptr(plaintext),
88
+ ciphertext,
89
+ c_size_t(len(plaintext)))
90
+ if result:
91
+ raise ValueError("Error %d while encrypting with RC4" % result)
92
+ return get_raw_buffer(ciphertext)
93
+
94
+ def decrypt(self, ciphertext):
95
+ """Decrypt a piece of data.
96
+
97
+ :param ciphertext: The data to decrypt, of any size.
98
+ :type ciphertext: bytes, bytearray, memoryview
99
+ :returns: the decrypted byte string, of equal length as the
100
+ ciphertext.
101
+ """
102
+
103
+ try:
104
+ return self.encrypt(ciphertext)
105
+ except ValueError as e:
106
+ raise ValueError(str(e).replace("enc", "dec"))
107
+
108
+
109
+ def new(key, *args, **kwargs):
110
+ """Create a new ARC4 cipher.
111
+
112
+ :param key:
113
+ The secret key to use in the symmetric cipher.
114
+ Its length must be in the range ``[1..256]``.
115
+ The recommended length is 16 bytes.
116
+ :type key: bytes, bytearray, memoryview
117
+
118
+ :Keyword Arguments:
119
+ * *drop* (``integer``) --
120
+ The amount of bytes to discard from the initial part of the keystream.
121
+ In fact, such part has been found to be distinguishable from random
122
+ data (while it shouldn't) and also correlated to key.
123
+
124
+ The recommended value is 3072_ bytes. The default value is 0.
125
+
126
+ :Return: an `ARC4Cipher` object
127
+
128
+ .. _3072: http://eprint.iacr.org/2002/067.pdf
129
+ """
130
+ return ARC4Cipher(key, *args, **kwargs)
131
+
132
+
133
+ # Size of a data block (in bytes)
134
+ block_size = 1
135
+ # Size of a key (in bytes)
136
+ key_size = range(1, 256+1)
python/py313/Lib/site-packages/Cryptodome/Cipher/ARC4.pyi ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Any, Union, Iterable
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ class ARC4Cipher:
6
+ block_size: int
7
+ key_size: int
8
+
9
+ def __init__(self, key: Buffer, *args: Any, **kwargs: Any) -> None: ...
10
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
11
+ def decrypt(self, ciphertext: Buffer) -> bytes: ...
12
+
13
+ def new(key: Buffer, drop : int = ...) -> ARC4Cipher: ...
14
+
15
+ block_size: int
16
+ key_size: Iterable[int]
python/py313/Lib/site-packages/Cryptodome/Cipher/Blowfish.py ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/Blowfish.py : Blowfish
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+ """
23
+ Module's constants for the modes of operation supported with Blowfish:
24
+
25
+ :var MODE_ECB: :ref:`Electronic Code Book (ECB) <ecb_mode>`
26
+ :var MODE_CBC: :ref:`Cipher-Block Chaining (CBC) <cbc_mode>`
27
+ :var MODE_CFB: :ref:`Cipher FeedBack (CFB) <cfb_mode>`
28
+ :var MODE_OFB: :ref:`Output FeedBack (OFB) <ofb_mode>`
29
+ :var MODE_CTR: :ref:`CounTer Mode (CTR) <ctr_mode>`
30
+ :var MODE_OPENPGP: :ref:`OpenPGP Mode <openpgp_mode>`
31
+ :var MODE_EAX: :ref:`EAX Mode <eax_mode>`
32
+ """
33
+
34
+ import sys
35
+
36
+ from Cryptodome.Cipher import _create_cipher
37
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
38
+ VoidPointer, SmartPointer, c_size_t,
39
+ c_uint8_ptr)
40
+
41
+ _raw_blowfish_lib = load_pycryptodome_raw_lib(
42
+ "Cryptodome.Cipher._raw_blowfish",
43
+ """
44
+ int Blowfish_start_operation(const uint8_t key[],
45
+ size_t key_len,
46
+ void **pResult);
47
+ int Blowfish_encrypt(const void *state,
48
+ const uint8_t *in,
49
+ uint8_t *out,
50
+ size_t data_len);
51
+ int Blowfish_decrypt(const void *state,
52
+ const uint8_t *in,
53
+ uint8_t *out,
54
+ size_t data_len);
55
+ int Blowfish_stop_operation(void *state);
56
+ """
57
+ )
58
+
59
+
60
+ def _create_base_cipher(dict_parameters):
61
+ """This method instantiates and returns a smart pointer to
62
+ a low-level base cipher. It will absorb named parameters in
63
+ the process."""
64
+
65
+ try:
66
+ key = dict_parameters.pop("key")
67
+ except KeyError:
68
+ raise TypeError("Missing 'key' parameter")
69
+
70
+ if len(key) not in key_size:
71
+ raise ValueError("Incorrect Blowfish key length (%d bytes)" % len(key))
72
+
73
+ start_operation = _raw_blowfish_lib.Blowfish_start_operation
74
+ stop_operation = _raw_blowfish_lib.Blowfish_stop_operation
75
+
76
+ void_p = VoidPointer()
77
+ result = start_operation(c_uint8_ptr(key),
78
+ c_size_t(len(key)),
79
+ void_p.address_of())
80
+ if result:
81
+ raise ValueError("Error %X while instantiating the Blowfish cipher"
82
+ % result)
83
+ return SmartPointer(void_p.get(), stop_operation)
84
+
85
+
86
+ def new(key, mode, *args, **kwargs):
87
+ """Create a new Blowfish cipher
88
+
89
+ :param key:
90
+ The secret key to use in the symmetric cipher.
91
+ Its length can vary from 5 to 56 bytes.
92
+ :type key: bytes, bytearray, memoryview
93
+
94
+ :param mode:
95
+ The chaining mode to use for encryption or decryption.
96
+ :type mode: One of the supported ``MODE_*`` constants
97
+
98
+ :Keyword Arguments:
99
+ * **iv** (*bytes*, *bytearray*, *memoryview*) --
100
+ (Only applicable for ``MODE_CBC``, ``MODE_CFB``, ``MODE_OFB``,
101
+ and ``MODE_OPENPGP`` modes).
102
+
103
+ The initialization vector to use for encryption or decryption.
104
+
105
+ For ``MODE_CBC``, ``MODE_CFB``, and ``MODE_OFB`` it must be 8 bytes long.
106
+
107
+ For ``MODE_OPENPGP`` mode only,
108
+ it must be 8 bytes long for encryption
109
+ and 10 bytes for decryption (in the latter case, it is
110
+ actually the *encrypted* IV which was prefixed to the ciphertext).
111
+
112
+ If not provided, a random byte string is generated (you must then
113
+ read its value with the :attr:`iv` attribute).
114
+
115
+ * **nonce** (*bytes*, *bytearray*, *memoryview*) --
116
+ (Only applicable for ``MODE_EAX`` and ``MODE_CTR``).
117
+
118
+ A value that must never be reused for any other encryption done
119
+ with this key.
120
+
121
+ For ``MODE_EAX`` there are no
122
+ restrictions on its length (recommended: **16** bytes).
123
+
124
+ For ``MODE_CTR``, its length must be in the range **[0..7]**.
125
+
126
+ If not provided for ``MODE_EAX``, a random byte string is generated (you
127
+ can read it back via the ``nonce`` attribute).
128
+
129
+ * **segment_size** (*integer*) --
130
+ (Only ``MODE_CFB``).The number of **bits** the plaintext and ciphertext
131
+ are segmented in. It must be a multiple of 8.
132
+ If not specified, it will be assumed to be 8.
133
+
134
+ * **mac_len** : (*integer*) --
135
+ (Only ``MODE_EAX``)
136
+ Length of the authentication tag, in bytes.
137
+ It must be no longer than 8 (default).
138
+
139
+ * **initial_value** : (*integer*) --
140
+ (Only ``MODE_CTR``). The initial value for the counter within
141
+ the counter block. By default it is **0**.
142
+
143
+ :Return: a Blowfish object, of the applicable mode.
144
+ """
145
+
146
+ return _create_cipher(sys.modules[__name__], key, mode, *args, **kwargs)
147
+
148
+ MODE_ECB = 1
149
+ MODE_CBC = 2
150
+ MODE_CFB = 3
151
+ MODE_OFB = 5
152
+ MODE_CTR = 6
153
+ MODE_OPENPGP = 7
154
+ MODE_EAX = 9
155
+
156
+ # Size of a data block (in bytes)
157
+ block_size = 8
158
+ # Size of a key (in bytes)
159
+ key_size = range(4, 56 + 1)
python/py313/Lib/site-packages/Cryptodome/Cipher/Blowfish.pyi ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Dict, Iterable, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ from Cryptodome.Cipher._mode_ecb import EcbMode
6
+ from Cryptodome.Cipher._mode_cbc import CbcMode
7
+ from Cryptodome.Cipher._mode_cfb import CfbMode
8
+ from Cryptodome.Cipher._mode_ofb import OfbMode
9
+ from Cryptodome.Cipher._mode_ctr import CtrMode
10
+ from Cryptodome.Cipher._mode_openpgp import OpenPgpMode
11
+ from Cryptodome.Cipher._mode_eax import EaxMode
12
+
13
+ BlowfishMode = int
14
+
15
+ MODE_ECB: BlowfishMode
16
+ MODE_CBC: BlowfishMode
17
+ MODE_CFB: BlowfishMode
18
+ MODE_OFB: BlowfishMode
19
+ MODE_CTR: BlowfishMode
20
+ MODE_OPENPGP: BlowfishMode
21
+ MODE_EAX: BlowfishMode
22
+
23
+ def new(key: Buffer,
24
+ mode: BlowfishMode,
25
+ iv : Optional[Buffer] = ...,
26
+ IV : Optional[Buffer] = ...,
27
+ nonce : Optional[Buffer] = ...,
28
+ segment_size : int = ...,
29
+ mac_len : int = ...,
30
+ initial_value : Union[int, Buffer] = ...,
31
+ counter : Dict = ...) -> \
32
+ Union[EcbMode, CbcMode, CfbMode, OfbMode, CtrMode, OpenPgpMode]: ...
33
+
34
+ block_size: int
35
+ key_size: Iterable[int]
python/py313/Lib/site-packages/Cryptodome/Cipher/CAST.py ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/CAST.py : CAST
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+ """
23
+ Module's constants for the modes of operation supported with CAST:
24
+
25
+ :var MODE_ECB: :ref:`Electronic Code Book (ECB) <ecb_mode>`
26
+ :var MODE_CBC: :ref:`Cipher-Block Chaining (CBC) <cbc_mode>`
27
+ :var MODE_CFB: :ref:`Cipher FeedBack (CFB) <cfb_mode>`
28
+ :var MODE_OFB: :ref:`Output FeedBack (OFB) <ofb_mode>`
29
+ :var MODE_CTR: :ref:`CounTer Mode (CTR) <ctr_mode>`
30
+ :var MODE_OPENPGP: :ref:`OpenPGP Mode <openpgp_mode>`
31
+ :var MODE_EAX: :ref:`EAX Mode <eax_mode>`
32
+ """
33
+
34
+ import sys
35
+
36
+ from Cryptodome.Cipher import _create_cipher
37
+ from Cryptodome.Util.py3compat import byte_string
38
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
39
+ VoidPointer, SmartPointer,
40
+ c_size_t, c_uint8_ptr)
41
+
42
+ _raw_cast_lib = load_pycryptodome_raw_lib(
43
+ "Cryptodome.Cipher._raw_cast",
44
+ """
45
+ int CAST_start_operation(const uint8_t key[],
46
+ size_t key_len,
47
+ void **pResult);
48
+ int CAST_encrypt(const void *state,
49
+ const uint8_t *in,
50
+ uint8_t *out,
51
+ size_t data_len);
52
+ int CAST_decrypt(const void *state,
53
+ const uint8_t *in,
54
+ uint8_t *out,
55
+ size_t data_len);
56
+ int CAST_stop_operation(void *state);
57
+ """)
58
+
59
+
60
+ def _create_base_cipher(dict_parameters):
61
+ """This method instantiates and returns a handle to a low-level
62
+ base cipher. It will absorb named parameters in the process."""
63
+
64
+ try:
65
+ key = dict_parameters.pop("key")
66
+ except KeyError:
67
+ raise TypeError("Missing 'key' parameter")
68
+
69
+ if len(key) not in key_size:
70
+ raise ValueError("Incorrect CAST key length (%d bytes)" % len(key))
71
+
72
+ start_operation = _raw_cast_lib.CAST_start_operation
73
+ stop_operation = _raw_cast_lib.CAST_stop_operation
74
+
75
+ cipher = VoidPointer()
76
+ result = start_operation(c_uint8_ptr(key),
77
+ c_size_t(len(key)),
78
+ cipher.address_of())
79
+ if result:
80
+ raise ValueError("Error %X while instantiating the CAST cipher"
81
+ % result)
82
+
83
+ return SmartPointer(cipher.get(), stop_operation)
84
+
85
+
86
+ def new(key, mode, *args, **kwargs):
87
+ """Create a new CAST cipher
88
+
89
+ :param key:
90
+ The secret key to use in the symmetric cipher.
91
+ Its length can vary from 5 to 16 bytes.
92
+ :type key: bytes, bytearray, memoryview
93
+
94
+ :param mode:
95
+ The chaining mode to use for encryption or decryption.
96
+ :type mode: One of the supported ``MODE_*`` constants
97
+
98
+ :Keyword Arguments:
99
+ * **iv** (*bytes*, *bytearray*, *memoryview*) --
100
+ (Only applicable for ``MODE_CBC``, ``MODE_CFB``, ``MODE_OFB``,
101
+ and ``MODE_OPENPGP`` modes).
102
+
103
+ The initialization vector to use for encryption or decryption.
104
+
105
+ For ``MODE_CBC``, ``MODE_CFB``, and ``MODE_OFB`` it must be 8 bytes long.
106
+
107
+ For ``MODE_OPENPGP`` mode only,
108
+ it must be 8 bytes long for encryption
109
+ and 10 bytes for decryption (in the latter case, it is
110
+ actually the *encrypted* IV which was prefixed to the ciphertext).
111
+
112
+ If not provided, a random byte string is generated (you must then
113
+ read its value with the :attr:`iv` attribute).
114
+
115
+ * **nonce** (*bytes*, *bytearray*, *memoryview*) --
116
+ (Only applicable for ``MODE_EAX`` and ``MODE_CTR``).
117
+
118
+ A value that must never be reused for any other encryption done
119
+ with this key.
120
+
121
+ For ``MODE_EAX`` there are no
122
+ restrictions on its length (recommended: **16** bytes).
123
+
124
+ For ``MODE_CTR``, its length must be in the range **[0..7]**.
125
+
126
+ If not provided for ``MODE_EAX``, a random byte string is generated (you
127
+ can read it back via the ``nonce`` attribute).
128
+
129
+ * **segment_size** (*integer*) --
130
+ (Only ``MODE_CFB``).The number of **bits** the plaintext and ciphertext
131
+ are segmented in. It must be a multiple of 8.
132
+ If not specified, it will be assumed to be 8.
133
+
134
+ * **mac_len** : (*integer*) --
135
+ (Only ``MODE_EAX``)
136
+ Length of the authentication tag, in bytes.
137
+ It must be no longer than 8 (default).
138
+
139
+ * **initial_value** : (*integer*) --
140
+ (Only ``MODE_CTR``). The initial value for the counter within
141
+ the counter block. By default it is **0**.
142
+
143
+ :Return: a CAST object, of the applicable mode.
144
+ """
145
+
146
+ return _create_cipher(sys.modules[__name__], key, mode, *args, **kwargs)
147
+
148
+ MODE_ECB = 1
149
+ MODE_CBC = 2
150
+ MODE_CFB = 3
151
+ MODE_OFB = 5
152
+ MODE_CTR = 6
153
+ MODE_OPENPGP = 7
154
+ MODE_EAX = 9
155
+
156
+ # Size of a data block (in bytes)
157
+ block_size = 8
158
+ # Size of a key (in bytes)
159
+ key_size = range(5, 16 + 1)
python/py313/Lib/site-packages/Cryptodome/Cipher/CAST.pyi ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Dict, Iterable, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ from Cryptodome.Cipher._mode_ecb import EcbMode
6
+ from Cryptodome.Cipher._mode_cbc import CbcMode
7
+ from Cryptodome.Cipher._mode_cfb import CfbMode
8
+ from Cryptodome.Cipher._mode_ofb import OfbMode
9
+ from Cryptodome.Cipher._mode_ctr import CtrMode
10
+ from Cryptodome.Cipher._mode_openpgp import OpenPgpMode
11
+ from Cryptodome.Cipher._mode_eax import EaxMode
12
+
13
+ CASTMode = int
14
+
15
+ MODE_ECB: CASTMode
16
+ MODE_CBC: CASTMode
17
+ MODE_CFB: CASTMode
18
+ MODE_OFB: CASTMode
19
+ MODE_CTR: CASTMode
20
+ MODE_OPENPGP: CASTMode
21
+ MODE_EAX: CASTMode
22
+
23
+ def new(key: Buffer,
24
+ mode: CASTMode,
25
+ iv : Optional[Buffer] = ...,
26
+ IV : Optional[Buffer] = ...,
27
+ nonce : Optional[Buffer] = ...,
28
+ segment_size : int = ...,
29
+ mac_len : int = ...,
30
+ initial_value : Union[int, Buffer] = ...,
31
+ counter : Dict = ...) -> \
32
+ Union[EcbMode, CbcMode, CfbMode, OfbMode, CtrMode, OpenPgpMode]: ...
33
+
34
+ block_size: int
35
+ key_size : Iterable[int]
python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20.py ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2014, Legrandin <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ from Cryptodome.Random import get_random_bytes
32
+
33
+ from Cryptodome.Util.py3compat import _copy_bytes
34
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
35
+ create_string_buffer,
36
+ get_raw_buffer, VoidPointer,
37
+ SmartPointer, c_size_t,
38
+ c_uint8_ptr, c_ulong,
39
+ is_writeable_buffer)
40
+
41
+ _raw_chacha20_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._chacha20",
42
+ """
43
+ int chacha20_init(void **pState,
44
+ const uint8_t *key,
45
+ size_t keySize,
46
+ const uint8_t *nonce,
47
+ size_t nonceSize);
48
+
49
+ int chacha20_destroy(void *state);
50
+
51
+ int chacha20_encrypt(void *state,
52
+ const uint8_t in[],
53
+ uint8_t out[],
54
+ size_t len);
55
+
56
+ int chacha20_seek(void *state,
57
+ unsigned long block_high,
58
+ unsigned long block_low,
59
+ unsigned offset);
60
+
61
+ int hchacha20( const uint8_t key[32],
62
+ const uint8_t nonce16[16],
63
+ uint8_t subkey[32]);
64
+ """)
65
+
66
+
67
+ def _HChaCha20(key, nonce):
68
+
69
+ assert(len(key) == 32)
70
+ assert(len(nonce) == 16)
71
+
72
+ subkey = bytearray(32)
73
+ result = _raw_chacha20_lib.hchacha20(
74
+ c_uint8_ptr(key),
75
+ c_uint8_ptr(nonce),
76
+ c_uint8_ptr(subkey))
77
+ if result:
78
+ raise ValueError("Error %d when deriving subkey with HChaCha20" % result)
79
+
80
+ return subkey
81
+
82
+
83
+ class ChaCha20Cipher(object):
84
+ """ChaCha20 (or XChaCha20) cipher object.
85
+ Do not create it directly. Use :py:func:`new` instead.
86
+
87
+ :var nonce: The nonce with length 8, 12 or 24 bytes
88
+ :vartype nonce: bytes
89
+ """
90
+
91
+ block_size = 1
92
+
93
+ def __init__(self, key, nonce):
94
+ """Initialize a ChaCha20/XChaCha20 cipher object
95
+
96
+ See also `new()` at the module level."""
97
+
98
+ self.nonce = _copy_bytes(None, None, nonce)
99
+
100
+ # XChaCha20 requires a key derivation with HChaCha20
101
+ # See 2.3 in https://tools.ietf.org/html/draft-arciszewski-xchacha-03
102
+ if len(nonce) == 24:
103
+ key = _HChaCha20(key, nonce[:16])
104
+ nonce = b'\x00' * 4 + nonce[16:]
105
+ self._name = "XChaCha20"
106
+ else:
107
+ self._name = "ChaCha20"
108
+ nonce = self.nonce
109
+
110
+ self._next = ("encrypt", "decrypt")
111
+
112
+ self._state = VoidPointer()
113
+ result = _raw_chacha20_lib.chacha20_init(
114
+ self._state.address_of(),
115
+ c_uint8_ptr(key),
116
+ c_size_t(len(key)),
117
+ nonce,
118
+ c_size_t(len(nonce)))
119
+ if result:
120
+ raise ValueError("Error %d instantiating a %s cipher" % (result,
121
+ self._name))
122
+ self._state = SmartPointer(self._state.get(),
123
+ _raw_chacha20_lib.chacha20_destroy)
124
+
125
+ def encrypt(self, plaintext, output=None):
126
+ """Encrypt a piece of data.
127
+
128
+ Args:
129
+ plaintext(bytes/bytearray/memoryview): The data to encrypt, of any size.
130
+ Keyword Args:
131
+ output(bytes/bytearray/memoryview): The location where the ciphertext
132
+ is written to. If ``None``, the ciphertext is returned.
133
+ Returns:
134
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
135
+ Otherwise, ``None``.
136
+ """
137
+
138
+ if "encrypt" not in self._next:
139
+ raise TypeError("Cipher object can only be used for decryption")
140
+ self._next = ("encrypt",)
141
+ return self._encrypt(plaintext, output)
142
+
143
+ def _encrypt(self, plaintext, output):
144
+ """Encrypt without FSM checks"""
145
+
146
+ if output is None:
147
+ ciphertext = create_string_buffer(len(plaintext))
148
+ else:
149
+ ciphertext = output
150
+
151
+ if not is_writeable_buffer(output):
152
+ raise TypeError("output must be a bytearray or a writeable memoryview")
153
+
154
+ if len(plaintext) != len(output):
155
+ raise ValueError("output must have the same length as the input"
156
+ " (%d bytes)" % len(plaintext))
157
+
158
+ result = _raw_chacha20_lib.chacha20_encrypt(
159
+ self._state.get(),
160
+ c_uint8_ptr(plaintext),
161
+ c_uint8_ptr(ciphertext),
162
+ c_size_t(len(plaintext)))
163
+ if result:
164
+ raise ValueError("Error %d while encrypting with %s" % (result, self._name))
165
+
166
+ if output is None:
167
+ return get_raw_buffer(ciphertext)
168
+ else:
169
+ return None
170
+
171
+ def decrypt(self, ciphertext, output=None):
172
+ """Decrypt a piece of data.
173
+
174
+ Args:
175
+ ciphertext(bytes/bytearray/memoryview): The data to decrypt, of any size.
176
+ Keyword Args:
177
+ output(bytes/bytearray/memoryview): The location where the plaintext
178
+ is written to. If ``None``, the plaintext is returned.
179
+ Returns:
180
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
181
+ Otherwise, ``None``.
182
+ """
183
+
184
+ if "decrypt" not in self._next:
185
+ raise TypeError("Cipher object can only be used for encryption")
186
+ self._next = ("decrypt",)
187
+
188
+ try:
189
+ return self._encrypt(ciphertext, output)
190
+ except ValueError as e:
191
+ raise ValueError(str(e).replace("enc", "dec"))
192
+
193
+ def seek(self, position):
194
+ """Seek to a certain position in the key stream.
195
+
196
+ If you want to seek to a certain block,
197
+ use ``seek(block_number * 64)``.
198
+
199
+ Args:
200
+ position (integer):
201
+ The absolute position within the key stream, in bytes.
202
+ """
203
+
204
+ block_number, offset = divmod(position, 64)
205
+ block_low = block_number & 0xFFFFFFFF
206
+ block_high = block_number >> 32
207
+
208
+ result = _raw_chacha20_lib.chacha20_seek(
209
+ self._state.get(),
210
+ c_ulong(block_high),
211
+ c_ulong(block_low),
212
+ offset
213
+ )
214
+ if result:
215
+ raise ValueError("Error %d while seeking with %s" % (result, self._name))
216
+
217
+
218
+ def _derive_Poly1305_key_pair(key, nonce):
219
+ """Derive a tuple (r, s, nonce) for a Poly1305 MAC.
220
+
221
+ If nonce is ``None``, a new 12-byte nonce is generated.
222
+ """
223
+
224
+ if len(key) != 32:
225
+ raise ValueError("Poly1305 with ChaCha20 requires a 32-byte key")
226
+
227
+ if nonce is None:
228
+ padded_nonce = nonce = get_random_bytes(12)
229
+ elif len(nonce) == 8:
230
+ # See RFC7538, 2.6: [...] ChaCha20 as specified here requires a 96-bit
231
+ # nonce. So if the provided nonce is only 64-bit, then the first 32
232
+ # bits of the nonce will be set to a constant number.
233
+ # This will usually be zero, but for protocols with multiple senders it may be
234
+ # different for each sender, but should be the same for all
235
+ # invocations of the function with the same key by a particular
236
+ # sender.
237
+ padded_nonce = b'\x00\x00\x00\x00' + nonce
238
+ elif len(nonce) == 12:
239
+ padded_nonce = nonce
240
+ else:
241
+ raise ValueError("Poly1305 with ChaCha20 requires an 8- or 12-byte nonce")
242
+
243
+ rs = new(key=key, nonce=padded_nonce).encrypt(b'\x00' * 32)
244
+ return rs[:16], rs[16:], nonce
245
+
246
+
247
+ def new(**kwargs):
248
+ """Create a new ChaCha20 or XChaCha20 cipher
249
+
250
+ Keyword Args:
251
+ key (bytes/bytearray/memoryview): The secret key to use.
252
+ It must be 32 bytes long.
253
+ nonce (bytes/bytearray/memoryview): A mandatory value that
254
+ must never be reused for any other encryption
255
+ done with this key.
256
+
257
+ For ChaCha20, it must be 8 or 12 bytes long.
258
+
259
+ For XChaCha20, it must be 24 bytes long.
260
+
261
+ If not provided, 8 bytes will be randomly generated
262
+ (you can find them back in the ``nonce`` attribute).
263
+
264
+ :Return: a :class:`Cryptodome.Cipher.ChaCha20.ChaCha20Cipher` object
265
+ """
266
+
267
+ try:
268
+ key = kwargs.pop("key")
269
+ except KeyError as e:
270
+ raise TypeError("Missing parameter %s" % e)
271
+
272
+ nonce = kwargs.pop("nonce", None)
273
+ if nonce is None:
274
+ nonce = get_random_bytes(8)
275
+
276
+ if len(key) != 32:
277
+ raise ValueError("ChaCha20/XChaCha20 key must be 32 bytes long")
278
+
279
+ if len(nonce) not in (8, 12, 24):
280
+ raise ValueError("Nonce must be 8/12 bytes(ChaCha20) or 24 bytes (XChaCha20)")
281
+
282
+ if kwargs:
283
+ raise TypeError("Unknown parameters: " + str(kwargs))
284
+
285
+ return ChaCha20Cipher(key, nonce)
286
+
287
+ # Size of a data block (in bytes)
288
+ block_size = 1
289
+
290
+ # Size of a key (in bytes)
291
+ key_size = 32
python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20.pyi ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, overload, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ def _HChaCha20(key: Buffer, nonce: Buffer) -> bytearray: ...
6
+
7
+ class ChaCha20Cipher:
8
+ block_size: int
9
+ nonce: bytes
10
+
11
+ def __init__(self, key: Buffer, nonce: Buffer) -> None: ...
12
+ @overload
13
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
14
+ @overload
15
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
16
+ @overload
17
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
18
+ @overload
19
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
20
+ def seek(self, position: int) -> None: ...
21
+
22
+ def new(key: Buffer, nonce: Optional[Buffer] = ...) -> ChaCha20Cipher: ...
23
+
24
+ block_size: int
25
+ key_size: int
python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20_Poly1305.py ADDED
@@ -0,0 +1,334 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2018, Helder Eijs <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ from binascii import unhexlify
32
+
33
+ from Cryptodome.Cipher import ChaCha20
34
+ from Cryptodome.Cipher.ChaCha20 import _HChaCha20
35
+ from Cryptodome.Hash import Poly1305, BLAKE2s
36
+
37
+ from Cryptodome.Random import get_random_bytes
38
+
39
+ from Cryptodome.Util.number import long_to_bytes
40
+ from Cryptodome.Util.py3compat import _copy_bytes, bord
41
+ from Cryptodome.Util._raw_api import is_buffer
42
+
43
+
44
+ def _enum(**enums):
45
+ return type('Enum', (), enums)
46
+
47
+
48
+ _CipherStatus = _enum(PROCESSING_AUTH_DATA=1,
49
+ PROCESSING_CIPHERTEXT=2,
50
+ PROCESSING_DONE=3)
51
+
52
+
53
+ class ChaCha20Poly1305Cipher(object):
54
+ """ChaCha20-Poly1305 and XChaCha20-Poly1305 cipher object.
55
+ Do not create it directly. Use :py:func:`new` instead.
56
+
57
+ :var nonce: The nonce with length 8, 12 or 24 bytes
58
+ :vartype nonce: byte string
59
+ """
60
+
61
+ def __init__(self, key, nonce):
62
+ """Initialize a ChaCha20-Poly1305 AEAD cipher object
63
+
64
+ See also `new()` at the module level."""
65
+
66
+ self._next = ("update", "encrypt", "decrypt", "digest",
67
+ "verify")
68
+
69
+ self._authenticator = Poly1305.new(key=key, nonce=nonce, cipher=ChaCha20)
70
+
71
+ self._cipher = ChaCha20.new(key=key, nonce=nonce)
72
+ self._cipher.seek(64) # Block counter starts at 1
73
+
74
+ self._len_aad = 0
75
+ self._len_ct = 0
76
+ self._mac_tag = None
77
+ self._status = _CipherStatus.PROCESSING_AUTH_DATA
78
+
79
+ def update(self, data):
80
+ """Protect the associated data.
81
+
82
+ Associated data (also known as *additional authenticated data* - AAD)
83
+ is the piece of the message that must stay in the clear, while
84
+ still allowing the receiver to verify its integrity.
85
+ An example is packet headers.
86
+
87
+ The associated data (possibly split into multiple segments) is
88
+ fed into :meth:`update` before any call to :meth:`decrypt` or :meth:`encrypt`.
89
+ If there is no associated data, :meth:`update` is not called.
90
+
91
+ :param bytes/bytearray/memoryview assoc_data:
92
+ A piece of associated data. There are no restrictions on its size.
93
+ """
94
+
95
+ if "update" not in self._next:
96
+ raise TypeError("update() method cannot be called")
97
+
98
+ self._len_aad += len(data)
99
+ self._authenticator.update(data)
100
+
101
+ def _pad_aad(self):
102
+
103
+ assert(self._status == _CipherStatus.PROCESSING_AUTH_DATA)
104
+ if self._len_aad & 0x0F:
105
+ self._authenticator.update(b'\x00' * (16 - (self._len_aad & 0x0F)))
106
+ self._status = _CipherStatus.PROCESSING_CIPHERTEXT
107
+
108
+ def encrypt(self, plaintext, output=None):
109
+ """Encrypt a piece of data.
110
+
111
+ Args:
112
+ plaintext(bytes/bytearray/memoryview): The data to encrypt, of any size.
113
+ Keyword Args:
114
+ output(bytes/bytearray/memoryview): The location where the ciphertext
115
+ is written to. If ``None``, the ciphertext is returned.
116
+ Returns:
117
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
118
+ Otherwise, ``None``.
119
+ """
120
+
121
+ if "encrypt" not in self._next:
122
+ raise TypeError("encrypt() method cannot be called")
123
+
124
+ if self._status == _CipherStatus.PROCESSING_AUTH_DATA:
125
+ self._pad_aad()
126
+
127
+ self._next = ("encrypt", "digest")
128
+
129
+ result = self._cipher.encrypt(plaintext, output=output)
130
+ self._len_ct += len(plaintext)
131
+ if output is None:
132
+ self._authenticator.update(result)
133
+ else:
134
+ self._authenticator.update(output)
135
+ return result
136
+
137
+ def decrypt(self, ciphertext, output=None):
138
+ """Decrypt a piece of data.
139
+
140
+ Args:
141
+ ciphertext(bytes/bytearray/memoryview): The data to decrypt, of any size.
142
+ Keyword Args:
143
+ output(bytes/bytearray/memoryview): The location where the plaintext
144
+ is written to. If ``None``, the plaintext is returned.
145
+ Returns:
146
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
147
+ Otherwise, ``None``.
148
+ """
149
+
150
+ if "decrypt" not in self._next:
151
+ raise TypeError("decrypt() method cannot be called")
152
+
153
+ if self._status == _CipherStatus.PROCESSING_AUTH_DATA:
154
+ self._pad_aad()
155
+
156
+ self._next = ("decrypt", "verify")
157
+
158
+ self._len_ct += len(ciphertext)
159
+ self._authenticator.update(ciphertext)
160
+ return self._cipher.decrypt(ciphertext, output=output)
161
+
162
+ def _compute_mac(self):
163
+ """Finalize the cipher (if not done already) and return the MAC."""
164
+
165
+ if self._mac_tag:
166
+ assert(self._status == _CipherStatus.PROCESSING_DONE)
167
+ return self._mac_tag
168
+
169
+ assert(self._status != _CipherStatus.PROCESSING_DONE)
170
+
171
+ if self._status == _CipherStatus.PROCESSING_AUTH_DATA:
172
+ self._pad_aad()
173
+
174
+ if self._len_ct & 0x0F:
175
+ self._authenticator.update(b'\x00' * (16 - (self._len_ct & 0x0F)))
176
+
177
+ self._status = _CipherStatus.PROCESSING_DONE
178
+
179
+ self._authenticator.update(long_to_bytes(self._len_aad, 8)[::-1])
180
+ self._authenticator.update(long_to_bytes(self._len_ct, 8)[::-1])
181
+ self._mac_tag = self._authenticator.digest()
182
+ return self._mac_tag
183
+
184
+ def digest(self):
185
+ """Compute the *binary* authentication tag (MAC).
186
+
187
+ :Return: the MAC tag, as 16 ``bytes``.
188
+ """
189
+
190
+ if "digest" not in self._next:
191
+ raise TypeError("digest() method cannot be called")
192
+ self._next = ("digest",)
193
+
194
+ return self._compute_mac()
195
+
196
+ def hexdigest(self):
197
+ """Compute the *printable* authentication tag (MAC).
198
+
199
+ This method is like :meth:`digest`.
200
+
201
+ :Return: the MAC tag, as a hexadecimal string.
202
+ """
203
+ return "".join(["%02x" % bord(x) for x in self.digest()])
204
+
205
+ def verify(self, received_mac_tag):
206
+ """Validate the *binary* authentication tag (MAC).
207
+
208
+ The receiver invokes this method at the very end, to
209
+ check if the associated data (if any) and the decrypted
210
+ messages are valid.
211
+
212
+ :param bytes/bytearray/memoryview received_mac_tag:
213
+ This is the 16-byte *binary* MAC, as received from the sender.
214
+ :Raises ValueError:
215
+ if the MAC does not match. The message has been tampered with
216
+ or the key is incorrect.
217
+ """
218
+
219
+ if "verify" not in self._next:
220
+ raise TypeError("verify() cannot be called"
221
+ " when encrypting a message")
222
+ self._next = ("verify",)
223
+
224
+ secret = get_random_bytes(16)
225
+
226
+ self._compute_mac()
227
+
228
+ mac1 = BLAKE2s.new(digest_bits=160, key=secret,
229
+ data=self._mac_tag)
230
+ mac2 = BLAKE2s.new(digest_bits=160, key=secret,
231
+ data=received_mac_tag)
232
+
233
+ if mac1.digest() != mac2.digest():
234
+ raise ValueError("MAC check failed")
235
+
236
+ def hexverify(self, hex_mac_tag):
237
+ """Validate the *printable* authentication tag (MAC).
238
+
239
+ This method is like :meth:`verify`.
240
+
241
+ :param string hex_mac_tag:
242
+ This is the *printable* MAC.
243
+ :Raises ValueError:
244
+ if the MAC does not match. The message has been tampered with
245
+ or the key is incorrect.
246
+ """
247
+
248
+ self.verify(unhexlify(hex_mac_tag))
249
+
250
+ def encrypt_and_digest(self, plaintext):
251
+ """Perform :meth:`encrypt` and :meth:`digest` in one step.
252
+
253
+ :param plaintext: The data to encrypt, of any size.
254
+ :type plaintext: bytes/bytearray/memoryview
255
+ :return: a tuple with two ``bytes`` objects:
256
+
257
+ - the ciphertext, of equal length as the plaintext
258
+ - the 16-byte MAC tag
259
+ """
260
+
261
+ return self.encrypt(plaintext), self.digest()
262
+
263
+ def decrypt_and_verify(self, ciphertext, received_mac_tag):
264
+ """Perform :meth:`decrypt` and :meth:`verify` in one step.
265
+
266
+ :param ciphertext: The piece of data to decrypt.
267
+ :type ciphertext: bytes/bytearray/memoryview
268
+ :param bytes received_mac_tag:
269
+ This is the 16-byte *binary* MAC, as received from the sender.
270
+ :return: the decrypted data (as ``bytes``)
271
+ :raises ValueError:
272
+ if the MAC does not match. The message has been tampered with
273
+ or the key is incorrect.
274
+ """
275
+
276
+ plaintext = self.decrypt(ciphertext)
277
+ self.verify(received_mac_tag)
278
+ return plaintext
279
+
280
+
281
+ def new(**kwargs):
282
+ """Create a new ChaCha20-Poly1305 or XChaCha20-Poly1305 AEAD cipher.
283
+
284
+ :keyword key: The secret key to use. It must be 32 bytes long.
285
+ :type key: byte string
286
+
287
+ :keyword nonce:
288
+ A value that must never be reused for any other encryption
289
+ done with this key.
290
+
291
+ For ChaCha20-Poly1305, it must be 8 or 12 bytes long.
292
+
293
+ For XChaCha20-Poly1305, it must be 24 bytes long.
294
+
295
+ If not provided, 12 ``bytes`` will be generated randomly
296
+ (you can find them back in the ``nonce`` attribute).
297
+ :type nonce: bytes, bytearray, memoryview
298
+
299
+ :Return: a :class:`Cryptodome.Cipher.ChaCha20.ChaCha20Poly1305Cipher` object
300
+ """
301
+
302
+ try:
303
+ key = kwargs.pop("key")
304
+ except KeyError as e:
305
+ raise TypeError("Missing parameter %s" % e)
306
+
307
+ if len(key) != 32:
308
+ raise ValueError("Key must be 32 bytes long")
309
+
310
+ nonce = kwargs.pop("nonce", None)
311
+ if nonce is None:
312
+ nonce = get_random_bytes(12)
313
+
314
+ if len(nonce) in (8, 12):
315
+ chacha20_poly1305_nonce = nonce
316
+ elif len(nonce) == 24:
317
+ key = _HChaCha20(key, nonce[:16])
318
+ chacha20_poly1305_nonce = b'\x00\x00\x00\x00' + nonce[16:]
319
+ else:
320
+ raise ValueError("Nonce must be 8, 12 or 24 bytes long")
321
+
322
+ if not is_buffer(nonce):
323
+ raise TypeError("nonce must be bytes, bytearray or memoryview")
324
+
325
+ if kwargs:
326
+ raise TypeError("Unknown parameters: " + str(kwargs))
327
+
328
+ cipher = ChaCha20Poly1305Cipher(key, chacha20_poly1305_nonce)
329
+ cipher.nonce = _copy_bytes(None, None, nonce)
330
+ return cipher
331
+
332
+
333
+ # Size of a key (in bytes)
334
+ key_size = 32
python/py313/Lib/site-packages/Cryptodome/Cipher/ChaCha20_Poly1305.pyi ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Tuple, overload, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ class ChaCha20Poly1305Cipher:
6
+ nonce: bytes
7
+
8
+ def __init__(self, key: Buffer, nonce: Buffer) -> None: ...
9
+ def update(self, data: Buffer) -> None: ...
10
+ @overload
11
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
12
+ @overload
13
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
14
+ @overload
15
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
16
+ @overload
17
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
18
+ def digest(self) -> bytes: ...
19
+ def hexdigest(self) -> str: ...
20
+ def verify(self, received_mac_tag: Buffer) -> None: ...
21
+ def hexverify(self, received_mac_tag: str) -> None: ...
22
+ def encrypt_and_digest(self, plaintext: Buffer) -> Tuple[bytes, bytes]: ...
23
+ def decrypt_and_verify(self, ciphertext: Buffer, received_mac_tag: Buffer) -> bytes: ...
24
+
25
+ def new(key: Buffer, nonce: Optional[Buffer] = ...) -> ChaCha20Poly1305Cipher: ...
26
+
27
+ block_size: int
28
+ key_size: int
python/py313/Lib/site-packages/Cryptodome/Cipher/DES.py ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/DES.py : DES
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+ """
23
+ Module's constants for the modes of operation supported with Single DES:
24
+
25
+ :var MODE_ECB: :ref:`Electronic Code Book (ECB) <ecb_mode>`
26
+ :var MODE_CBC: :ref:`Cipher-Block Chaining (CBC) <cbc_mode>`
27
+ :var MODE_CFB: :ref:`Cipher FeedBack (CFB) <cfb_mode>`
28
+ :var MODE_OFB: :ref:`Output FeedBack (OFB) <ofb_mode>`
29
+ :var MODE_CTR: :ref:`CounTer Mode (CTR) <ctr_mode>`
30
+ :var MODE_OPENPGP: :ref:`OpenPGP Mode <openpgp_mode>`
31
+ :var MODE_EAX: :ref:`EAX Mode <eax_mode>`
32
+ """
33
+
34
+ import sys
35
+
36
+ from Cryptodome.Cipher import _create_cipher
37
+ from Cryptodome.Util.py3compat import byte_string
38
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
39
+ VoidPointer, SmartPointer,
40
+ c_size_t, c_uint8_ptr)
41
+
42
+ _raw_des_lib = load_pycryptodome_raw_lib(
43
+ "Cryptodome.Cipher._raw_des",
44
+ """
45
+ int DES_start_operation(const uint8_t key[],
46
+ size_t key_len,
47
+ void **pResult);
48
+ int DES_encrypt(const void *state,
49
+ const uint8_t *in,
50
+ uint8_t *out,
51
+ size_t data_len);
52
+ int DES_decrypt(const void *state,
53
+ const uint8_t *in,
54
+ uint8_t *out,
55
+ size_t data_len);
56
+ int DES_stop_operation(void *state);
57
+ """)
58
+
59
+
60
+ def _create_base_cipher(dict_parameters):
61
+ """This method instantiates and returns a handle to a low-level
62
+ base cipher. It will absorb named parameters in the process."""
63
+
64
+ try:
65
+ key = dict_parameters.pop("key")
66
+ except KeyError:
67
+ raise TypeError("Missing 'key' parameter")
68
+
69
+ if len(key) != key_size:
70
+ raise ValueError("Incorrect DES key length (%d bytes)" % len(key))
71
+
72
+ start_operation = _raw_des_lib.DES_start_operation
73
+ stop_operation = _raw_des_lib.DES_stop_operation
74
+
75
+ cipher = VoidPointer()
76
+ result = start_operation(c_uint8_ptr(key),
77
+ c_size_t(len(key)),
78
+ cipher.address_of())
79
+ if result:
80
+ raise ValueError("Error %X while instantiating the DES cipher"
81
+ % result)
82
+ return SmartPointer(cipher.get(), stop_operation)
83
+
84
+
85
+ def new(key, mode, *args, **kwargs):
86
+ """Create a new DES cipher.
87
+
88
+ :param key:
89
+ The secret key to use in the symmetric cipher.
90
+ It must be 8 byte long. The parity bits will be ignored.
91
+ :type key: bytes/bytearray/memoryview
92
+
93
+ :param mode:
94
+ The chaining mode to use for encryption or decryption.
95
+ :type mode: One of the supported ``MODE_*`` constants
96
+
97
+ :Keyword Arguments:
98
+ * **iv** (*byte string*) --
99
+ (Only applicable for ``MODE_CBC``, ``MODE_CFB``, ``MODE_OFB``,
100
+ and ``MODE_OPENPGP`` modes).
101
+
102
+ The initialization vector to use for encryption or decryption.
103
+
104
+ For ``MODE_CBC``, ``MODE_CFB``, and ``MODE_OFB`` it must be 8 bytes long.
105
+
106
+ For ``MODE_OPENPGP`` mode only,
107
+ it must be 8 bytes long for encryption
108
+ and 10 bytes for decryption (in the latter case, it is
109
+ actually the *encrypted* IV which was prefixed to the ciphertext).
110
+
111
+ If not provided, a random byte string is generated (you must then
112
+ read its value with the :attr:`iv` attribute).
113
+
114
+ * **nonce** (*byte string*) --
115
+ (Only applicable for ``MODE_EAX`` and ``MODE_CTR``).
116
+
117
+ A value that must never be reused for any other encryption done
118
+ with this key.
119
+
120
+ For ``MODE_EAX`` there are no
121
+ restrictions on its length (recommended: **16** bytes).
122
+
123
+ For ``MODE_CTR``, its length must be in the range **[0..7]**.
124
+
125
+ If not provided for ``MODE_EAX``, a random byte string is generated (you
126
+ can read it back via the ``nonce`` attribute).
127
+
128
+ * **segment_size** (*integer*) --
129
+ (Only ``MODE_CFB``).The number of **bits** the plaintext and ciphertext
130
+ are segmented in. It must be a multiple of 8.
131
+ If not specified, it will be assumed to be 8.
132
+
133
+ * **mac_len** : (*integer*) --
134
+ (Only ``MODE_EAX``)
135
+ Length of the authentication tag, in bytes.
136
+ It must be no longer than 8 (default).
137
+
138
+ * **initial_value** : (*integer*) --
139
+ (Only ``MODE_CTR``). The initial value for the counter within
140
+ the counter block. By default it is **0**.
141
+
142
+ :Return: a DES object, of the applicable mode.
143
+ """
144
+
145
+ return _create_cipher(sys.modules[__name__], key, mode, *args, **kwargs)
146
+
147
+ MODE_ECB = 1
148
+ MODE_CBC = 2
149
+ MODE_CFB = 3
150
+ MODE_OFB = 5
151
+ MODE_CTR = 6
152
+ MODE_OPENPGP = 7
153
+ MODE_EAX = 9
154
+
155
+ # Size of a data block (in bytes)
156
+ block_size = 8
157
+ # Size of a key (in bytes)
158
+ key_size = 8
python/py313/Lib/site-packages/Cryptodome/Cipher/DES.pyi ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Dict, Iterable, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ from Cryptodome.Cipher._mode_ecb import EcbMode
6
+ from Cryptodome.Cipher._mode_cbc import CbcMode
7
+ from Cryptodome.Cipher._mode_cfb import CfbMode
8
+ from Cryptodome.Cipher._mode_ofb import OfbMode
9
+ from Cryptodome.Cipher._mode_ctr import CtrMode
10
+ from Cryptodome.Cipher._mode_openpgp import OpenPgpMode
11
+ from Cryptodome.Cipher._mode_eax import EaxMode
12
+
13
+ DESMode = int
14
+
15
+ MODE_ECB: DESMode
16
+ MODE_CBC: DESMode
17
+ MODE_CFB: DESMode
18
+ MODE_OFB: DESMode
19
+ MODE_CTR: DESMode
20
+ MODE_OPENPGP: DESMode
21
+ MODE_EAX: DESMode
22
+
23
+ def new(key: Buffer,
24
+ mode: DESMode,
25
+ iv : Optional[Buffer] = ...,
26
+ IV : Optional[Buffer] = ...,
27
+ nonce : Optional[Buffer] = ...,
28
+ segment_size : int = ...,
29
+ mac_len : int = ...,
30
+ initial_value : Union[int, Buffer] = ...,
31
+ counter : Dict = ...) -> \
32
+ Union[EcbMode, CbcMode, CfbMode, OfbMode, CtrMode, OpenPgpMode]: ...
33
+
34
+ block_size: int
35
+ key_size: int
python/py313/Lib/site-packages/Cryptodome/Cipher/DES3.py ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/DES3.py : DES3
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+ """
23
+ Module's constants for the modes of operation supported with Triple DES:
24
+
25
+ :var MODE_ECB: :ref:`Electronic Code Book (ECB) <ecb_mode>`
26
+ :var MODE_CBC: :ref:`Cipher-Block Chaining (CBC) <cbc_mode>`
27
+ :var MODE_CFB: :ref:`Cipher FeedBack (CFB) <cfb_mode>`
28
+ :var MODE_OFB: :ref:`Output FeedBack (OFB) <ofb_mode>`
29
+ :var MODE_CTR: :ref:`CounTer Mode (CTR) <ctr_mode>`
30
+ :var MODE_OPENPGP: :ref:`OpenPGP Mode <openpgp_mode>`
31
+ :var MODE_EAX: :ref:`EAX Mode <eax_mode>`
32
+ """
33
+
34
+ import sys
35
+
36
+ from Cryptodome.Cipher import _create_cipher
37
+ from Cryptodome.Util.py3compat import byte_string, bchr, bord, bstr
38
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
39
+ VoidPointer, SmartPointer,
40
+ c_size_t)
41
+
42
+ _raw_des3_lib = load_pycryptodome_raw_lib(
43
+ "Cryptodome.Cipher._raw_des3",
44
+ """
45
+ int DES3_start_operation(const uint8_t key[],
46
+ size_t key_len,
47
+ void **pResult);
48
+ int DES3_encrypt(const void *state,
49
+ const uint8_t *in,
50
+ uint8_t *out,
51
+ size_t data_len);
52
+ int DES3_decrypt(const void *state,
53
+ const uint8_t *in,
54
+ uint8_t *out,
55
+ size_t data_len);
56
+ int DES3_stop_operation(void *state);
57
+ """)
58
+
59
+
60
+ def adjust_key_parity(key_in):
61
+ """Set the parity bits in a TDES key.
62
+
63
+ :param key_in: the TDES key whose bits need to be adjusted
64
+ :type key_in: byte string
65
+
66
+ :returns: a copy of ``key_in``, with the parity bits correctly set
67
+ :rtype: byte string
68
+
69
+ :raises ValueError: if the TDES key is not 16 or 24 bytes long
70
+ :raises ValueError: if the TDES key degenerates into Single DES
71
+ """
72
+
73
+ def parity_byte(key_byte):
74
+ parity = 1
75
+ for i in range(1, 8):
76
+ parity ^= (key_byte >> i) & 1
77
+ return (key_byte & 0xFE) | parity
78
+
79
+ if len(key_in) not in key_size:
80
+ raise ValueError("Not a valid TDES key")
81
+
82
+ key_out = b"".join([ bchr(parity_byte(bord(x))) for x in key_in ])
83
+
84
+ if key_out[:8] == key_out[8:16] or key_out[-16:-8] == key_out[-8:]:
85
+ raise ValueError("Triple DES key degenerates to single DES")
86
+
87
+ return key_out
88
+
89
+
90
+ def _create_base_cipher(dict_parameters):
91
+ """This method instantiates and returns a handle to a low-level base cipher.
92
+ It will absorb named parameters in the process."""
93
+
94
+ try:
95
+ key_in = dict_parameters.pop("key")
96
+ except KeyError:
97
+ raise TypeError("Missing 'key' parameter")
98
+
99
+ key = adjust_key_parity(bstr(key_in))
100
+
101
+ start_operation = _raw_des3_lib.DES3_start_operation
102
+ stop_operation = _raw_des3_lib.DES3_stop_operation
103
+
104
+ cipher = VoidPointer()
105
+ result = start_operation(key,
106
+ c_size_t(len(key)),
107
+ cipher.address_of())
108
+ if result:
109
+ raise ValueError("Error %X while instantiating the TDES cipher"
110
+ % result)
111
+ return SmartPointer(cipher.get(), stop_operation)
112
+
113
+
114
+ def new(key, mode, *args, **kwargs):
115
+ """Create a new Triple DES cipher.
116
+
117
+ :param key:
118
+ The secret key to use in the symmetric cipher.
119
+ It must be 16 or 24 byte long. The parity bits will be ignored.
120
+ :type key: bytes/bytearray/memoryview
121
+
122
+ :param mode:
123
+ The chaining mode to use for encryption or decryption.
124
+ :type mode: One of the supported ``MODE_*`` constants
125
+
126
+ :Keyword Arguments:
127
+ * **iv** (*bytes*, *bytearray*, *memoryview*) --
128
+ (Only applicable for ``MODE_CBC``, ``MODE_CFB``, ``MODE_OFB``,
129
+ and ``MODE_OPENPGP`` modes).
130
+
131
+ The initialization vector to use for encryption or decryption.
132
+
133
+ For ``MODE_CBC``, ``MODE_CFB``, and ``MODE_OFB`` it must be 8 bytes long.
134
+
135
+ For ``MODE_OPENPGP`` mode only,
136
+ it must be 8 bytes long for encryption
137
+ and 10 bytes for decryption (in the latter case, it is
138
+ actually the *encrypted* IV which was prefixed to the ciphertext).
139
+
140
+ If not provided, a random byte string is generated (you must then
141
+ read its value with the :attr:`iv` attribute).
142
+
143
+ * **nonce** (*bytes*, *bytearray*, *memoryview*) --
144
+ (Only applicable for ``MODE_EAX`` and ``MODE_CTR``).
145
+
146
+ A value that must never be reused for any other encryption done
147
+ with this key.
148
+
149
+ For ``MODE_EAX`` there are no
150
+ restrictions on its length (recommended: **16** bytes).
151
+
152
+ For ``MODE_CTR``, its length must be in the range **[0..7]**.
153
+
154
+ If not provided for ``MODE_EAX``, a random byte string is generated (you
155
+ can read it back via the ``nonce`` attribute).
156
+
157
+ * **segment_size** (*integer*) --
158
+ (Only ``MODE_CFB``).The number of **bits** the plaintext and ciphertext
159
+ are segmented in. It must be a multiple of 8.
160
+ If not specified, it will be assumed to be 8.
161
+
162
+ * **mac_len** : (*integer*) --
163
+ (Only ``MODE_EAX``)
164
+ Length of the authentication tag, in bytes.
165
+ It must be no longer than 8 (default).
166
+
167
+ * **initial_value** : (*integer*) --
168
+ (Only ``MODE_CTR``). The initial value for the counter within
169
+ the counter block. By default it is **0**.
170
+
171
+ :Return: a Triple DES object, of the applicable mode.
172
+ """
173
+
174
+ return _create_cipher(sys.modules[__name__], key, mode, *args, **kwargs)
175
+
176
+ MODE_ECB = 1
177
+ MODE_CBC = 2
178
+ MODE_CFB = 3
179
+ MODE_OFB = 5
180
+ MODE_CTR = 6
181
+ MODE_OPENPGP = 7
182
+ MODE_EAX = 9
183
+
184
+ # Size of a data block (in bytes)
185
+ block_size = 8
186
+ # Size of a key (in bytes)
187
+ key_size = (16, 24)
python/py313/Lib/site-packages/Cryptodome/Cipher/DES3.pyi ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Dict, Tuple, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ from Cryptodome.Cipher._mode_ecb import EcbMode
6
+ from Cryptodome.Cipher._mode_cbc import CbcMode
7
+ from Cryptodome.Cipher._mode_cfb import CfbMode
8
+ from Cryptodome.Cipher._mode_ofb import OfbMode
9
+ from Cryptodome.Cipher._mode_ctr import CtrMode
10
+ from Cryptodome.Cipher._mode_openpgp import OpenPgpMode
11
+ from Cryptodome.Cipher._mode_eax import EaxMode
12
+
13
+ def adjust_key_parity(key_in: bytes) -> bytes: ...
14
+
15
+ DES3Mode = int
16
+
17
+ MODE_ECB: DES3Mode
18
+ MODE_CBC: DES3Mode
19
+ MODE_CFB: DES3Mode
20
+ MODE_OFB: DES3Mode
21
+ MODE_CTR: DES3Mode
22
+ MODE_OPENPGP: DES3Mode
23
+ MODE_EAX: DES3Mode
24
+
25
+ def new(key: Buffer,
26
+ mode: DES3Mode,
27
+ iv : Optional[Buffer] = ...,
28
+ IV : Optional[Buffer] = ...,
29
+ nonce : Optional[Buffer] = ...,
30
+ segment_size : int = ...,
31
+ mac_len : int = ...,
32
+ initial_value : Union[int, Buffer] = ...,
33
+ counter : Dict = ...) -> \
34
+ Union[EcbMode, CbcMode, CfbMode, OfbMode, CtrMode, OpenPgpMode]: ...
35
+
36
+ block_size: int
37
+ key_size: Tuple[int, int]
python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_OAEP.py ADDED
@@ -0,0 +1,231 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/PKCS1_OAEP.py : PKCS#1 OAEP
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ from Cryptodome.Signature.pss import MGF1
24
+ import Cryptodome.Hash.SHA1
25
+
26
+ from Cryptodome.Util.py3compat import _copy_bytes
27
+ import Cryptodome.Util.number
28
+ from Cryptodome.Util.number import ceil_div, bytes_to_long, long_to_bytes
29
+ from Cryptodome.Util.strxor import strxor
30
+ from Cryptodome import Random
31
+ from ._pkcs1_oaep_decode import oaep_decode
32
+
33
+
34
+ class PKCS1OAEP_Cipher:
35
+ """Cipher object for PKCS#1 v1.5 OAEP.
36
+ Do not create directly: use :func:`new` instead."""
37
+
38
+ def __init__(self, key, hashAlgo, mgfunc, label, randfunc):
39
+ """Initialize this PKCS#1 OAEP cipher object.
40
+
41
+ :Parameters:
42
+ key : an RSA key object
43
+ If a private half is given, both encryption and decryption are possible.
44
+ If a public half is given, only encryption is possible.
45
+ hashAlgo : hash object
46
+ The hash function to use. This can be a module under `Cryptodome.Hash`
47
+ or an existing hash object created from any of such modules. If not specified,
48
+ `Cryptodome.Hash.SHA1` is used.
49
+ mgfunc : callable
50
+ A mask generation function that accepts two parameters: a string to
51
+ use as seed, and the lenth of the mask to generate, in bytes.
52
+ If not specified, the standard MGF1 consistent with ``hashAlgo`` is used (a safe choice).
53
+ label : bytes/bytearray/memoryview
54
+ A label to apply to this particular encryption. If not specified,
55
+ an empty string is used. Specifying a label does not improve
56
+ security.
57
+ randfunc : callable
58
+ A function that returns random bytes.
59
+
60
+ :attention: Modify the mask generation function only if you know what you are doing.
61
+ Sender and receiver must use the same one.
62
+ """
63
+ self._key = key
64
+
65
+ if hashAlgo:
66
+ self._hashObj = hashAlgo
67
+ else:
68
+ self._hashObj = Cryptodome.Hash.SHA1
69
+
70
+ if mgfunc:
71
+ self._mgf = mgfunc
72
+ else:
73
+ self._mgf = lambda x, y: MGF1(x, y, self._hashObj)
74
+
75
+ self._label = _copy_bytes(None, None, label)
76
+ self._randfunc = randfunc
77
+
78
+ def can_encrypt(self):
79
+ """Legacy function to check if you can call :meth:`encrypt`.
80
+
81
+ .. deprecated:: 3.0"""
82
+ return self._key.can_encrypt()
83
+
84
+ def can_decrypt(self):
85
+ """Legacy function to check if you can call :meth:`decrypt`.
86
+
87
+ .. deprecated:: 3.0"""
88
+ return self._key.can_decrypt()
89
+
90
+ def encrypt(self, message):
91
+ """Encrypt a message with PKCS#1 OAEP.
92
+
93
+ :param message:
94
+ The message to encrypt, also known as plaintext. It can be of
95
+ variable length, but not longer than the RSA modulus (in bytes)
96
+ minus 2, minus twice the hash output size.
97
+ For instance, if you use RSA 2048 and SHA-256, the longest message
98
+ you can encrypt is 190 byte long.
99
+ :type message: bytes/bytearray/memoryview
100
+
101
+ :returns: The ciphertext, as large as the RSA modulus.
102
+ :rtype: bytes
103
+
104
+ :raises ValueError:
105
+ if the message is too long.
106
+ """
107
+
108
+ # See 7.1.1 in RFC3447
109
+ modBits = Cryptodome.Util.number.size(self._key.n)
110
+ k = ceil_div(modBits, 8) # Convert from bits to bytes
111
+ hLen = self._hashObj.digest_size
112
+ mLen = len(message)
113
+
114
+ # Step 1b
115
+ ps_len = k - mLen - 2 * hLen - 2
116
+ if ps_len < 0:
117
+ raise ValueError("Plaintext is too long.")
118
+ # Step 2a
119
+ lHash = self._hashObj.new(self._label).digest()
120
+ # Step 2b
121
+ ps = b'\x00' * ps_len
122
+ # Step 2c
123
+ db = lHash + ps + b'\x01' + _copy_bytes(None, None, message)
124
+ # Step 2d
125
+ ros = self._randfunc(hLen)
126
+ # Step 2e
127
+ dbMask = self._mgf(ros, k-hLen-1)
128
+ # Step 2f
129
+ maskedDB = strxor(db, dbMask)
130
+ # Step 2g
131
+ seedMask = self._mgf(maskedDB, hLen)
132
+ # Step 2h
133
+ maskedSeed = strxor(ros, seedMask)
134
+ # Step 2i
135
+ em = b'\x00' + maskedSeed + maskedDB
136
+ # Step 3a (OS2IP)
137
+ em_int = bytes_to_long(em)
138
+ # Step 3b (RSAEP)
139
+ m_int = self._key._encrypt(em_int)
140
+ # Step 3c (I2OSP)
141
+ c = long_to_bytes(m_int, k)
142
+ return c
143
+
144
+ def decrypt(self, ciphertext):
145
+ """Decrypt a message with PKCS#1 OAEP.
146
+
147
+ :param ciphertext: The encrypted message.
148
+ :type ciphertext: bytes/bytearray/memoryview
149
+
150
+ :returns: The original message (plaintext).
151
+ :rtype: bytes
152
+
153
+ :raises ValueError:
154
+ if the ciphertext has the wrong length, or if decryption
155
+ fails the integrity check (in which case, the decryption
156
+ key is probably wrong).
157
+ :raises TypeError:
158
+ if the RSA key has no private half (i.e. you are trying
159
+ to decrypt using a public key).
160
+ """
161
+
162
+ # See 7.1.2 in RFC3447
163
+ modBits = Cryptodome.Util.number.size(self._key.n)
164
+ k = ceil_div(modBits, 8) # Convert from bits to bytes
165
+ hLen = self._hashObj.digest_size
166
+
167
+ # Step 1b and 1c
168
+ if len(ciphertext) != k or k < hLen+2:
169
+ raise ValueError("Ciphertext with incorrect length.")
170
+ # Step 2a (O2SIP)
171
+ ct_int = bytes_to_long(ciphertext)
172
+ # Step 2b (RSADP) and step 2c (I2OSP)
173
+ em = self._key._decrypt_to_bytes(ct_int)
174
+ # Step 3a
175
+ lHash = self._hashObj.new(self._label).digest()
176
+ # y must be 0, but we MUST NOT check it here in order not to
177
+ # allow attacks like Manger's (http://dl.acm.org/citation.cfm?id=704143)
178
+ maskedSeed = em[1:hLen+1]
179
+ maskedDB = em[hLen+1:]
180
+ # Step 3c
181
+ seedMask = self._mgf(maskedDB, hLen)
182
+ # Step 3d
183
+ seed = strxor(maskedSeed, seedMask)
184
+ # Step 3e
185
+ dbMask = self._mgf(seed, k-hLen-1)
186
+ # Step 3f
187
+ db = strxor(maskedDB, dbMask)
188
+ # Step 3b + 3g
189
+ res = oaep_decode(em, lHash, db)
190
+ if res <= 0:
191
+ raise ValueError("Incorrect decryption.")
192
+ # Step 4
193
+ return db[res:]
194
+
195
+
196
+ def new(key, hashAlgo=None, mgfunc=None, label=b'', randfunc=None):
197
+ """Return a cipher object :class:`PKCS1OAEP_Cipher`
198
+ that can be used to perform PKCS#1 OAEP encryption or decryption.
199
+
200
+ :param key:
201
+ The key object to use to encrypt or decrypt the message.
202
+ Decryption is only possible with a private RSA key.
203
+ :type key: RSA key object
204
+
205
+ :param hashAlgo:
206
+ The hash function to use. This can be a module under `Cryptodome.Hash`
207
+ or an existing hash object created from any of such modules.
208
+ If not specified, `Cryptodome.Hash.SHA1` is used.
209
+ :type hashAlgo: hash object
210
+
211
+ :param mgfunc:
212
+ A mask generation function that accepts two parameters: a string to
213
+ use as seed, and the lenth of the mask to generate, in bytes.
214
+ If not specified, the standard MGF1 consistent with ``hashAlgo`` is used (a safe choice).
215
+ :type mgfunc: callable
216
+
217
+ :param label:
218
+ A label to apply to this particular encryption. If not specified,
219
+ an empty string is used. Specifying a label does not improve
220
+ security.
221
+ :type label: bytes/bytearray/memoryview
222
+
223
+ :param randfunc:
224
+ A function that returns random bytes.
225
+ The default is `Random.get_random_bytes`.
226
+ :type randfunc: callable
227
+ """
228
+
229
+ if randfunc is None:
230
+ randfunc = Random.get_random_bytes
231
+ return PKCS1OAEP_Cipher(key, hashAlgo, mgfunc, label, randfunc)
python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_OAEP.pyi ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Optional, Union, Callable, Any, overload
2
+ from typing_extensions import Protocol
3
+
4
+ from Cryptodome.PublicKey.RSA import RsaKey
5
+
6
+ class HashLikeClass(Protocol):
7
+ digest_size : int
8
+ def new(self, data: Optional[bytes] = ...) -> Any: ...
9
+
10
+ class HashLikeModule(Protocol):
11
+ digest_size : int
12
+ @staticmethod
13
+ def new(data: Optional[bytes] = ...) -> Any: ...
14
+
15
+ HashLike = Union[HashLikeClass, HashLikeModule]
16
+
17
+ Buffer = Union[bytes, bytearray, memoryview]
18
+
19
+ class PKCS1OAEP_Cipher:
20
+ def __init__(self,
21
+ key: RsaKey,
22
+ hashAlgo: HashLike,
23
+ mgfunc: Callable[[bytes, int], bytes],
24
+ label: Buffer,
25
+ randfunc: Callable[[int], bytes]) -> None: ...
26
+ def can_encrypt(self) -> bool: ...
27
+ def can_decrypt(self) -> bool: ...
28
+ def encrypt(self, message: Buffer) -> bytes: ...
29
+ def decrypt(self, ciphertext: Buffer) -> bytes: ...
30
+
31
+ def new(key: RsaKey,
32
+ hashAlgo: Optional[HashLike] = ...,
33
+ mgfunc: Optional[Callable[[bytes, int], bytes]] = ...,
34
+ label: Optional[Buffer] = ...,
35
+ randfunc: Optional[Callable[[int], bytes]] = ...) -> PKCS1OAEP_Cipher: ...
python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_v1_5.py ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/PKCS1-v1_5.py : PKCS#1 v1.5
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ __all__ = ['new', 'PKCS115_Cipher']
24
+
25
+ from Cryptodome import Random
26
+ from Cryptodome.Util.number import bytes_to_long, long_to_bytes
27
+ from Cryptodome.Util.py3compat import bord, is_bytes, _copy_bytes
28
+ from ._pkcs1_oaep_decode import pkcs1_decode
29
+
30
+
31
+ class PKCS115_Cipher:
32
+ """This cipher can perform PKCS#1 v1.5 RSA encryption or decryption.
33
+ Do not instantiate directly. Use :func:`Cryptodome.Cipher.PKCS1_v1_5.new` instead."""
34
+
35
+ def __init__(self, key, randfunc):
36
+ """Initialize this PKCS#1 v1.5 cipher object.
37
+
38
+ :Parameters:
39
+ key : an RSA key object
40
+ If a private half is given, both encryption and decryption are possible.
41
+ If a public half is given, only encryption is possible.
42
+ randfunc : callable
43
+ Function that returns random bytes.
44
+ """
45
+
46
+ self._key = key
47
+ self._randfunc = randfunc
48
+
49
+ def can_encrypt(self):
50
+ """Return True if this cipher object can be used for encryption."""
51
+ return self._key.can_encrypt()
52
+
53
+ def can_decrypt(self):
54
+ """Return True if this cipher object can be used for decryption."""
55
+ return self._key.can_decrypt()
56
+
57
+ def encrypt(self, message):
58
+ """Produce the PKCS#1 v1.5 encryption of a message.
59
+
60
+ This function is named ``RSAES-PKCS1-V1_5-ENCRYPT``, and it is specified in
61
+ `section 7.2.1 of RFC8017
62
+ <https://tools.ietf.org/html/rfc8017#page-28>`_.
63
+
64
+ :param message:
65
+ The message to encrypt, also known as plaintext. It can be of
66
+ variable length, but not longer than the RSA modulus (in bytes) minus 11.
67
+ :type message: bytes/bytearray/memoryview
68
+
69
+ :Returns: A byte string, the ciphertext in which the message is encrypted.
70
+ It is as long as the RSA modulus (in bytes).
71
+
72
+ :Raises ValueError:
73
+ If the RSA key length is not sufficiently long to deal with the given
74
+ message.
75
+ """
76
+
77
+ # See 7.2.1 in RFC8017
78
+ k = self._key.size_in_bytes()
79
+ mLen = len(message)
80
+
81
+ # Step 1
82
+ if mLen > k - 11:
83
+ raise ValueError("Plaintext is too long.")
84
+ # Step 2a
85
+ ps = []
86
+ while len(ps) != k - mLen - 3:
87
+ new_byte = self._randfunc(1)
88
+ if bord(new_byte[0]) == 0x00:
89
+ continue
90
+ ps.append(new_byte)
91
+ ps = b"".join(ps)
92
+ # Step 2b
93
+ em = b'\x00\x02' + ps + b'\x00' + _copy_bytes(None, None, message)
94
+ # Step 3a (OS2IP)
95
+ em_int = bytes_to_long(em)
96
+ # Step 3b (RSAEP)
97
+ m_int = self._key._encrypt(em_int)
98
+ # Step 3c (I2OSP)
99
+ c = long_to_bytes(m_int, k)
100
+ return c
101
+
102
+ def decrypt(self, ciphertext, sentinel, expected_pt_len=0):
103
+ r"""Decrypt a PKCS#1 v1.5 ciphertext.
104
+
105
+ This is the function ``RSAES-PKCS1-V1_5-DECRYPT`` specified in
106
+ `section 7.2.2 of RFC8017
107
+ <https://tools.ietf.org/html/rfc8017#page-29>`_.
108
+
109
+ Args:
110
+ ciphertext (bytes/bytearray/memoryview):
111
+ The ciphertext that contains the message to recover.
112
+ sentinel (any type):
113
+ The object to return whenever an error is detected.
114
+ expected_pt_len (integer):
115
+ The length the plaintext is known to have, or 0 if unknown.
116
+
117
+ Returns (byte string):
118
+ It is either the original message or the ``sentinel`` (in case of an error).
119
+
120
+ .. warning::
121
+ PKCS#1 v1.5 decryption is intrinsically vulnerable to timing
122
+ attacks (see `Bleichenbacher's`__ attack).
123
+ **Use PKCS#1 OAEP instead**.
124
+
125
+ This implementation attempts to mitigate the risk
126
+ with some constant-time constructs.
127
+ However, they are not sufficient by themselves: the type of protocol you
128
+ implement and the way you handle errors make a big difference.
129
+
130
+ Specifically, you should make it very hard for the (malicious)
131
+ party that submitted the ciphertext to quickly understand if decryption
132
+ succeeded or not.
133
+
134
+ To this end, it is recommended that your protocol only encrypts
135
+ plaintexts of fixed length (``expected_pt_len``),
136
+ that ``sentinel`` is a random byte string of the same length,
137
+ and that processing continues for as long
138
+ as possible even if ``sentinel`` is returned (i.e. in case of
139
+ incorrect decryption).
140
+
141
+ .. __: https://dx.doi.org/10.1007/BFb0055716
142
+ """
143
+
144
+ # See 7.2.2 in RFC8017
145
+ k = self._key.size_in_bytes()
146
+
147
+ # Step 1
148
+ if len(ciphertext) != k:
149
+ raise ValueError("Ciphertext with incorrect length (not %d bytes)" % k)
150
+
151
+ # Step 2a (O2SIP)
152
+ ct_int = bytes_to_long(ciphertext)
153
+
154
+ # Step 2b (RSADP) and Step 2c (I2OSP)
155
+ em = self._key._decrypt_to_bytes(ct_int)
156
+
157
+ # Step 3 (not constant time when the sentinel is not a byte string)
158
+ output = bytes(bytearray(k))
159
+ if not is_bytes(sentinel) or len(sentinel) > k:
160
+ size = pkcs1_decode(em, b'', expected_pt_len, output)
161
+ if size < 0:
162
+ return sentinel
163
+ else:
164
+ return output[size:]
165
+
166
+ # Step 3 (somewhat constant time)
167
+ size = pkcs1_decode(em, sentinel, expected_pt_len, output)
168
+ return output[size:]
169
+
170
+
171
+ def new(key, randfunc=None):
172
+ """Create a cipher for performing PKCS#1 v1.5 encryption or decryption.
173
+
174
+ :param key:
175
+ The key to use to encrypt or decrypt the message. This is a `Cryptodome.PublicKey.RSA` object.
176
+ Decryption is only possible if *key* is a private RSA key.
177
+ :type key: RSA key object
178
+
179
+ :param randfunc:
180
+ Function that return random bytes.
181
+ The default is :func:`Cryptodome.Random.get_random_bytes`.
182
+ :type randfunc: callable
183
+
184
+ :returns: A cipher object `PKCS115_Cipher`.
185
+ """
186
+
187
+ if randfunc is None:
188
+ randfunc = Random.get_random_bytes
189
+ return PKCS115_Cipher(key, randfunc)
python/py313/Lib/site-packages/Cryptodome/Cipher/PKCS1_v1_5.pyi ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Callable, Union, Any, Optional, TypeVar
2
+
3
+ from Cryptodome.PublicKey.RSA import RsaKey
4
+
5
+ Buffer = Union[bytes, bytearray, memoryview]
6
+ T = TypeVar('T')
7
+
8
+ class PKCS115_Cipher:
9
+ def __init__(self,
10
+ key: RsaKey,
11
+ randfunc: Callable[[int], bytes]) -> None: ...
12
+ def can_encrypt(self) -> bool: ...
13
+ def can_decrypt(self) -> bool: ...
14
+ def encrypt(self, message: Buffer) -> bytes: ...
15
+ def decrypt(self, ciphertext: Buffer,
16
+ sentinel: T,
17
+ expected_pt_len: Optional[int] = ...) -> Union[bytes, T]: ...
18
+
19
+ def new(key: RsaKey,
20
+ randfunc: Optional[Callable[[int], bytes]] = ...) -> PKCS115_Cipher: ...
python/py313/Lib/site-packages/Cryptodome/Cipher/Salsa20.py ADDED
@@ -0,0 +1,167 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/Salsa20.py : Salsa20 stream cipher (http://cr.yp.to/snuffle.html)
4
+ #
5
+ # Contributed by Fabrizio Tarizzo <fabrizio@fabriziotarizzo.org>.
6
+ #
7
+ # ===================================================================
8
+ # The contents of this file are dedicated to the public domain. To
9
+ # the extent that dedication to the public domain is not available,
10
+ # everyone is granted a worldwide, perpetual, royalty-free,
11
+ # non-exclusive license to exercise all rights associated with the
12
+ # contents of this file for any purpose whatsoever.
13
+ # No rights are reserved.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ # SOFTWARE.
23
+ # ===================================================================
24
+
25
+ from Cryptodome.Util.py3compat import _copy_bytes
26
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
27
+ create_string_buffer,
28
+ get_raw_buffer, VoidPointer,
29
+ SmartPointer, c_size_t,
30
+ c_uint8_ptr, is_writeable_buffer)
31
+
32
+ from Cryptodome.Random import get_random_bytes
33
+
34
+ _raw_salsa20_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._Salsa20",
35
+ """
36
+ int Salsa20_stream_init(uint8_t *key, size_t keylen,
37
+ uint8_t *nonce, size_t nonce_len,
38
+ void **pSalsaState);
39
+ int Salsa20_stream_destroy(void *salsaState);
40
+ int Salsa20_stream_encrypt(void *salsaState,
41
+ const uint8_t in[],
42
+ uint8_t out[], size_t len);
43
+ """)
44
+
45
+
46
+ class Salsa20Cipher:
47
+ """Salsa20 cipher object. Do not create it directly. Use :py:func:`new`
48
+ instead.
49
+
50
+ :var nonce: The nonce with length 8
51
+ :vartype nonce: byte string
52
+ """
53
+
54
+ def __init__(self, key, nonce):
55
+ """Initialize a Salsa20 cipher object
56
+
57
+ See also `new()` at the module level."""
58
+
59
+ if len(key) not in key_size:
60
+ raise ValueError("Incorrect key length for Salsa20 (%d bytes)" % len(key))
61
+
62
+ if len(nonce) != 8:
63
+ raise ValueError("Incorrect nonce length for Salsa20 (%d bytes)" %
64
+ len(nonce))
65
+
66
+ self.nonce = _copy_bytes(None, None, nonce)
67
+
68
+ self._state = VoidPointer()
69
+ result = _raw_salsa20_lib.Salsa20_stream_init(
70
+ c_uint8_ptr(key),
71
+ c_size_t(len(key)),
72
+ c_uint8_ptr(nonce),
73
+ c_size_t(len(nonce)),
74
+ self._state.address_of())
75
+ if result:
76
+ raise ValueError("Error %d instantiating a Salsa20 cipher")
77
+ self._state = SmartPointer(self._state.get(),
78
+ _raw_salsa20_lib.Salsa20_stream_destroy)
79
+
80
+ self.block_size = 1
81
+ self.key_size = len(key)
82
+
83
+ def encrypt(self, plaintext, output=None):
84
+ """Encrypt a piece of data.
85
+
86
+ Args:
87
+ plaintext(bytes/bytearray/memoryview): The data to encrypt, of any size.
88
+ Keyword Args:
89
+ output(bytes/bytearray/memoryview): The location where the ciphertext
90
+ is written to. If ``None``, the ciphertext is returned.
91
+ Returns:
92
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
93
+ Otherwise, ``None``.
94
+ """
95
+
96
+ if output is None:
97
+ ciphertext = create_string_buffer(len(plaintext))
98
+ else:
99
+ ciphertext = output
100
+
101
+ if not is_writeable_buffer(output):
102
+ raise TypeError("output must be a bytearray or a writeable memoryview")
103
+
104
+ if len(plaintext) != len(output):
105
+ raise ValueError("output must have the same length as the input"
106
+ " (%d bytes)" % len(plaintext))
107
+
108
+ result = _raw_salsa20_lib.Salsa20_stream_encrypt(
109
+ self._state.get(),
110
+ c_uint8_ptr(plaintext),
111
+ c_uint8_ptr(ciphertext),
112
+ c_size_t(len(plaintext)))
113
+ if result:
114
+ raise ValueError("Error %d while encrypting with Salsa20" % result)
115
+
116
+ if output is None:
117
+ return get_raw_buffer(ciphertext)
118
+ else:
119
+ return None
120
+
121
+ def decrypt(self, ciphertext, output=None):
122
+ """Decrypt a piece of data.
123
+
124
+ Args:
125
+ ciphertext(bytes/bytearray/memoryview): The data to decrypt, of any size.
126
+ Keyword Args:
127
+ output(bytes/bytearray/memoryview): The location where the plaintext
128
+ is written to. If ``None``, the plaintext is returned.
129
+ Returns:
130
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
131
+ Otherwise, ``None``.
132
+ """
133
+
134
+ try:
135
+ return self.encrypt(ciphertext, output=output)
136
+ except ValueError as e:
137
+ raise ValueError(str(e).replace("enc", "dec"))
138
+
139
+
140
+ def new(key, nonce=None):
141
+ """Create a new Salsa20 cipher
142
+
143
+ :keyword key: The secret key to use. It must be 16 or 32 bytes long.
144
+ :type key: bytes/bytearray/memoryview
145
+
146
+ :keyword nonce:
147
+ A value that must never be reused for any other encryption
148
+ done with this key. It must be 8 bytes long.
149
+
150
+ If not provided, a random byte string will be generated (you can read
151
+ it back via the ``nonce`` attribute of the returned object).
152
+ :type nonce: bytes/bytearray/memoryview
153
+
154
+ :Return: a :class:`Cryptodome.Cipher.Salsa20.Salsa20Cipher` object
155
+ """
156
+
157
+ if nonce is None:
158
+ nonce = get_random_bytes(8)
159
+
160
+ return Salsa20Cipher(key, nonce)
161
+
162
+ # Size of a data block (in bytes)
163
+ block_size = 1
164
+
165
+ # Size of a key (in bytes)
166
+ key_size = (16, 32)
167
+
python/py313/Lib/site-packages/Cryptodome/Cipher/Salsa20.pyi ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Tuple, Optional, overload, Optional
2
+
3
+ Buffer = bytes|bytearray|memoryview
4
+
5
+ class Salsa20Cipher:
6
+ nonce: bytes
7
+ block_size: int
8
+ key_size: int
9
+
10
+ def __init__(self,
11
+ key: Buffer,
12
+ nonce: Buffer) -> None: ...
13
+ @overload
14
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
15
+ @overload
16
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
17
+ @overload
18
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
19
+ @overload
20
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
21
+
22
+ def new(key: Buffer, nonce: Optional[Buffer] = ...) -> Salsa20Cipher: ...
23
+
24
+ block_size: int
25
+ key_size: Tuple[int, int]
26
+
python/py313/Lib/site-packages/Cryptodome/Cipher/_ARC4.pyd ADDED
Binary file (10.8 kB). View file
 
python/py313/Lib/site-packages/Cryptodome/Cipher/_EKSBlowfish.py ADDED
@@ -0,0 +1,131 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2019, Legrandin <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ import sys
32
+
33
+ from Cryptodome.Cipher import _create_cipher
34
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
35
+ VoidPointer, SmartPointer, c_size_t,
36
+ c_uint8_ptr, c_uint)
37
+
38
+ _raw_blowfish_lib = load_pycryptodome_raw_lib(
39
+ "Cryptodome.Cipher._raw_eksblowfish",
40
+ """
41
+ int EKSBlowfish_start_operation(const uint8_t key[],
42
+ size_t key_len,
43
+ const uint8_t salt[16],
44
+ size_t salt_len,
45
+ unsigned cost,
46
+ unsigned invert,
47
+ void **pResult);
48
+ int EKSBlowfish_encrypt(const void *state,
49
+ const uint8_t *in,
50
+ uint8_t *out,
51
+ size_t data_len);
52
+ int EKSBlowfish_decrypt(const void *state,
53
+ const uint8_t *in,
54
+ uint8_t *out,
55
+ size_t data_len);
56
+ int EKSBlowfish_stop_operation(void *state);
57
+ """
58
+ )
59
+
60
+
61
+ def _create_base_cipher(dict_parameters):
62
+ """This method instantiates and returns a smart pointer to
63
+ a low-level base cipher. It will absorb named parameters in
64
+ the process."""
65
+
66
+ try:
67
+ key = dict_parameters.pop("key")
68
+ salt = dict_parameters.pop("salt")
69
+ cost = dict_parameters.pop("cost")
70
+ except KeyError as e:
71
+ raise TypeError("Missing EKSBlowfish parameter: " + str(e))
72
+ invert = dict_parameters.pop("invert", True)
73
+
74
+ if len(key) not in key_size:
75
+ raise ValueError("Incorrect EKSBlowfish key length (%d bytes)" % len(key))
76
+
77
+ start_operation = _raw_blowfish_lib.EKSBlowfish_start_operation
78
+ stop_operation = _raw_blowfish_lib.EKSBlowfish_stop_operation
79
+
80
+ void_p = VoidPointer()
81
+ result = start_operation(c_uint8_ptr(key),
82
+ c_size_t(len(key)),
83
+ c_uint8_ptr(salt),
84
+ c_size_t(len(salt)),
85
+ c_uint(cost),
86
+ c_uint(int(invert)),
87
+ void_p.address_of())
88
+ if result:
89
+ raise ValueError("Error %X while instantiating the EKSBlowfish cipher"
90
+ % result)
91
+ return SmartPointer(void_p.get(), stop_operation)
92
+
93
+
94
+ def new(key, mode, salt, cost, invert):
95
+ """Create a new EKSBlowfish cipher
96
+
97
+ Args:
98
+
99
+ key (bytes, bytearray, memoryview):
100
+ The secret key to use in the symmetric cipher.
101
+ Its length can vary from 0 to 72 bytes.
102
+
103
+ mode (one of the supported ``MODE_*`` constants):
104
+ The chaining mode to use for encryption or decryption.
105
+
106
+ salt (bytes, bytearray, memoryview):
107
+ The salt that bcrypt uses to thwart rainbow table attacks
108
+
109
+ cost (integer):
110
+ The complexity factor in bcrypt
111
+
112
+ invert (bool):
113
+ If ``False``, in the inner loop use ``ExpandKey`` first over the salt
114
+ and then over the key, as defined in
115
+ the `original bcrypt specification <https://www.usenix.org/legacy/events/usenix99/provos/provos_html/node4.html>`_.
116
+ If ``True``, reverse the order, as in the first implementation of
117
+ `bcrypt` in OpenBSD.
118
+
119
+ :Return: an EKSBlowfish object
120
+ """
121
+
122
+ kwargs = { 'salt':salt, 'cost':cost, 'invert':invert }
123
+ return _create_cipher(sys.modules[__name__], key, mode, **kwargs)
124
+
125
+
126
+ MODE_ECB = 1
127
+
128
+ # Size of a data block (in bytes)
129
+ block_size = 8
130
+ # Size of a key (in bytes)
131
+ key_size = range(0, 72 + 1)
python/py313/Lib/site-packages/Cryptodome/Cipher/_EKSBlowfish.pyi ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, Iterable
2
+
3
+ from Cryptodome.Cipher._mode_ecb import EcbMode
4
+
5
+ MODE_ECB: int
6
+
7
+ Buffer = Union[bytes, bytearray, memoryview]
8
+
9
+ def new(key: Buffer,
10
+ mode: int,
11
+ salt: Buffer,
12
+ cost: int) -> EcbMode: ...
13
+
14
+ block_size: int
15
+ key_size: Iterable[int]
python/py313/Lib/site-packages/Cryptodome/Cipher/_Salsa20.pyd ADDED
Binary file (13.8 kB). View file
 
python/py313/Lib/site-packages/Cryptodome/Cipher/__init__.py ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # A block cipher is instantiated as a combination of:
3
+ # 1. A base cipher (such as AES)
4
+ # 2. A mode of operation (such as CBC)
5
+ #
6
+ # Both items are implemented as C modules.
7
+ #
8
+ # The API of #1 is (replace "AES" with the name of the actual cipher):
9
+ # - AES_start_operaion(key) --> base_cipher_state
10
+ # - AES_encrypt(base_cipher_state, in, out, length)
11
+ # - AES_decrypt(base_cipher_state, in, out, length)
12
+ # - AES_stop_operation(base_cipher_state)
13
+ #
14
+ # Where base_cipher_state is AES_State, a struct with BlockBase (set of
15
+ # pointers to encrypt/decrypt/stop) followed by cipher-specific data.
16
+ #
17
+ # The API of #2 is (replace "CBC" with the name of the actual mode):
18
+ # - CBC_start_operation(base_cipher_state) --> mode_state
19
+ # - CBC_encrypt(mode_state, in, out, length)
20
+ # - CBC_decrypt(mode_state, in, out, length)
21
+ # - CBC_stop_operation(mode_state)
22
+ #
23
+ # where mode_state is a a pointer to base_cipher_state plus mode-specific data.
24
+
25
+ def _create_cipher(factory, key, mode, *args, **kwargs):
26
+
27
+ kwargs["key"] = key
28
+
29
+ if args:
30
+ if mode in (8, 9, 10, 11, 12):
31
+ if len(args) > 1:
32
+ raise TypeError("Too many arguments for this mode")
33
+ kwargs["nonce"] = args[0]
34
+ elif mode in (2, 3, 5, 7):
35
+ if len(args) > 1:
36
+ raise TypeError("Too many arguments for this mode")
37
+ kwargs["IV"] = args[0]
38
+ elif mode == 6:
39
+ if len(args) > 0:
40
+ raise TypeError("Too many arguments for this mode")
41
+ elif mode == 1:
42
+ raise TypeError("IV is not meaningful for the ECB mode")
43
+
44
+ res = None
45
+ extra_modes = kwargs.pop("add_aes_modes", False)
46
+
47
+ if mode == 1:
48
+ from Cryptodome.Cipher._mode_ecb import _create_ecb_cipher
49
+ res = _create_ecb_cipher(factory, **kwargs)
50
+ elif mode == 2:
51
+ from Cryptodome.Cipher._mode_cbc import _create_cbc_cipher
52
+ res = _create_cbc_cipher(factory, **kwargs)
53
+ elif mode == 3:
54
+ from Cryptodome.Cipher._mode_cfb import _create_cfb_cipher
55
+ res = _create_cfb_cipher(factory, **kwargs)
56
+ elif mode == 5:
57
+ from Cryptodome.Cipher._mode_ofb import _create_ofb_cipher
58
+ res = _create_ofb_cipher(factory, **kwargs)
59
+ elif mode == 6:
60
+ from Cryptodome.Cipher._mode_ctr import _create_ctr_cipher
61
+ res = _create_ctr_cipher(factory, **kwargs)
62
+ elif mode == 7:
63
+ from Cryptodome.Cipher._mode_openpgp import _create_openpgp_cipher
64
+ res = _create_openpgp_cipher(factory, **kwargs)
65
+ elif mode == 9:
66
+ from Cryptodome.Cipher._mode_eax import _create_eax_cipher
67
+ res = _create_eax_cipher(factory, **kwargs)
68
+ elif extra_modes:
69
+ if mode == 8:
70
+ from Cryptodome.Cipher._mode_ccm import _create_ccm_cipher
71
+ res = _create_ccm_cipher(factory, **kwargs)
72
+ elif mode == 10:
73
+ from Cryptodome.Cipher._mode_siv import _create_siv_cipher
74
+ res = _create_siv_cipher(factory, **kwargs)
75
+ elif mode == 11:
76
+ from Cryptodome.Cipher._mode_gcm import _create_gcm_cipher
77
+ res = _create_gcm_cipher(factory, **kwargs)
78
+ elif mode == 12:
79
+ from Cryptodome.Cipher._mode_ocb import _create_ocb_cipher
80
+ res = _create_ocb_cipher(factory, **kwargs)
81
+ elif mode == 13:
82
+ from Cryptodome.Cipher._mode_kw import _create_kw_cipher
83
+ res = _create_kw_cipher(factory, **kwargs)
84
+ elif mode == 14:
85
+ from Cryptodome.Cipher._mode_kwp import _create_kwp_cipher
86
+ res = _create_kwp_cipher(factory, **kwargs)
87
+
88
+ if res is None:
89
+ raise ValueError("Mode not supported")
90
+
91
+ return res
python/py313/Lib/site-packages/Cryptodome/Cipher/__init__.pyi ADDED
File without changes
python/py313/Lib/site-packages/Cryptodome/Cipher/_chacha20.pyd ADDED
Binary file (13.3 kB). View file
 
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cbc.py ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2014, Legrandin <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ """
32
+ Ciphertext Block Chaining (CBC) mode.
33
+ """
34
+
35
+ __all__ = ['CbcMode']
36
+
37
+ from Cryptodome.Util.py3compat import _copy_bytes
38
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib, VoidPointer,
39
+ create_string_buffer, get_raw_buffer,
40
+ SmartPointer, c_size_t, c_uint8_ptr,
41
+ is_writeable_buffer)
42
+
43
+ from Cryptodome.Random import get_random_bytes
44
+
45
+ raw_cbc_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_cbc", """
46
+ int CBC_start_operation(void *cipher,
47
+ const uint8_t iv[],
48
+ size_t iv_len,
49
+ void **pResult);
50
+ int CBC_encrypt(void *cbcState,
51
+ const uint8_t *in,
52
+ uint8_t *out,
53
+ size_t data_len);
54
+ int CBC_decrypt(void *cbcState,
55
+ const uint8_t *in,
56
+ uint8_t *out,
57
+ size_t data_len);
58
+ int CBC_stop_operation(void *state);
59
+ """
60
+ )
61
+
62
+
63
+ class CbcMode(object):
64
+ """*Cipher-Block Chaining (CBC)*.
65
+
66
+ Each of the ciphertext blocks depends on the current
67
+ and all previous plaintext blocks.
68
+
69
+ An Initialization Vector (*IV*) is required.
70
+
71
+ See `NIST SP800-38A`_ , Section 6.2 .
72
+
73
+ .. _`NIST SP800-38A` : http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
74
+
75
+ :undocumented: __init__
76
+ """
77
+
78
+ def __init__(self, block_cipher, iv):
79
+ """Create a new block cipher, configured in CBC mode.
80
+
81
+ :Parameters:
82
+ block_cipher : C pointer
83
+ A smart pointer to the low-level block cipher instance.
84
+
85
+ iv : bytes/bytearray/memoryview
86
+ The initialization vector to use for encryption or decryption.
87
+ It is as long as the cipher block.
88
+
89
+ **The IV must be unpredictable**. Ideally it is picked randomly.
90
+
91
+ Reusing the *IV* for encryptions performed with the same key
92
+ compromises confidentiality.
93
+ """
94
+
95
+ self._state = VoidPointer()
96
+ result = raw_cbc_lib.CBC_start_operation(block_cipher.get(),
97
+ c_uint8_ptr(iv),
98
+ c_size_t(len(iv)),
99
+ self._state.address_of())
100
+ if result:
101
+ raise ValueError("Error %d while instantiating the CBC mode"
102
+ % result)
103
+
104
+ # Ensure that object disposal of this Python object will (eventually)
105
+ # free the memory allocated by the raw library for the cipher mode
106
+ self._state = SmartPointer(self._state.get(),
107
+ raw_cbc_lib.CBC_stop_operation)
108
+
109
+ # Memory allocated for the underlying block cipher is now owed
110
+ # by the cipher mode
111
+ block_cipher.release()
112
+
113
+ self.block_size = len(iv)
114
+ """The block size of the underlying cipher, in bytes."""
115
+
116
+ self.iv = _copy_bytes(None, None, iv)
117
+ """The Initialization Vector originally used to create the object.
118
+ The value does not change."""
119
+
120
+ self.IV = self.iv
121
+ """Alias for `iv`"""
122
+
123
+ self._next = ["encrypt", "decrypt"]
124
+
125
+ def encrypt(self, plaintext, output=None):
126
+ """Encrypt data with the key and the parameters set at initialization.
127
+
128
+ A cipher object is stateful: once you have encrypted a message
129
+ you cannot encrypt (or decrypt) another message using the same
130
+ object.
131
+
132
+ The data to encrypt can be broken up in two or
133
+ more pieces and `encrypt` can be called multiple times.
134
+
135
+ That is, the statement:
136
+
137
+ >>> c.encrypt(a) + c.encrypt(b)
138
+
139
+ is equivalent to:
140
+
141
+ >>> c.encrypt(a+b)
142
+
143
+ That also means that you cannot reuse an object for encrypting
144
+ or decrypting other data with the same key.
145
+
146
+ This function does not add any padding to the plaintext.
147
+
148
+ :Parameters:
149
+ plaintext : bytes/bytearray/memoryview
150
+ The piece of data to encrypt.
151
+ Its lenght must be multiple of the cipher block size.
152
+ :Keywords:
153
+ output : bytearray/memoryview
154
+ The location where the ciphertext must be written to.
155
+ If ``None``, the ciphertext is returned.
156
+ :Return:
157
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
158
+ Otherwise, ``None``.
159
+ """
160
+
161
+ if "encrypt" not in self._next:
162
+ raise TypeError("encrypt() cannot be called after decrypt()")
163
+ self._next = ["encrypt"]
164
+
165
+ if output is None:
166
+ ciphertext = create_string_buffer(len(plaintext))
167
+ else:
168
+ ciphertext = output
169
+
170
+ if not is_writeable_buffer(output):
171
+ raise TypeError("output must be a bytearray or a writeable memoryview")
172
+
173
+ if len(plaintext) != len(output):
174
+ raise ValueError("output must have the same length as the input"
175
+ " (%d bytes)" % len(plaintext))
176
+
177
+ result = raw_cbc_lib.CBC_encrypt(self._state.get(),
178
+ c_uint8_ptr(plaintext),
179
+ c_uint8_ptr(ciphertext),
180
+ c_size_t(len(plaintext)))
181
+ if result:
182
+ if result == 3:
183
+ raise ValueError("Data must be padded to %d byte boundary in CBC mode" % self.block_size)
184
+ raise ValueError("Error %d while encrypting in CBC mode" % result)
185
+
186
+ if output is None:
187
+ return get_raw_buffer(ciphertext)
188
+ else:
189
+ return None
190
+
191
+ def decrypt(self, ciphertext, output=None):
192
+ """Decrypt data with the key and the parameters set at initialization.
193
+
194
+ A cipher object is stateful: once you have decrypted a message
195
+ you cannot decrypt (or encrypt) another message with the same
196
+ object.
197
+
198
+ The data to decrypt can be broken up in two or
199
+ more pieces and `decrypt` can be called multiple times.
200
+
201
+ That is, the statement:
202
+
203
+ >>> c.decrypt(a) + c.decrypt(b)
204
+
205
+ is equivalent to:
206
+
207
+ >>> c.decrypt(a+b)
208
+
209
+ This function does not remove any padding from the plaintext.
210
+
211
+ :Parameters:
212
+ ciphertext : bytes/bytearray/memoryview
213
+ The piece of data to decrypt.
214
+ Its length must be multiple of the cipher block size.
215
+ :Keywords:
216
+ output : bytearray/memoryview
217
+ The location where the plaintext must be written to.
218
+ If ``None``, the plaintext is returned.
219
+ :Return:
220
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
221
+ Otherwise, ``None``.
222
+ """
223
+
224
+ if "decrypt" not in self._next:
225
+ raise TypeError("decrypt() cannot be called after encrypt()")
226
+ self._next = ["decrypt"]
227
+
228
+ if output is None:
229
+ plaintext = create_string_buffer(len(ciphertext))
230
+ else:
231
+ plaintext = output
232
+
233
+ if not is_writeable_buffer(output):
234
+ raise TypeError("output must be a bytearray or a writeable memoryview")
235
+
236
+ if len(ciphertext) != len(output):
237
+ raise ValueError("output must have the same length as the input"
238
+ " (%d bytes)" % len(plaintext))
239
+
240
+ result = raw_cbc_lib.CBC_decrypt(self._state.get(),
241
+ c_uint8_ptr(ciphertext),
242
+ c_uint8_ptr(plaintext),
243
+ c_size_t(len(ciphertext)))
244
+ if result:
245
+ if result == 3:
246
+ raise ValueError("Data must be padded to %d byte boundary in CBC mode" % self.block_size)
247
+ raise ValueError("Error %d while decrypting in CBC mode" % result)
248
+
249
+ if output is None:
250
+ return get_raw_buffer(plaintext)
251
+ else:
252
+ return None
253
+
254
+
255
+ def _create_cbc_cipher(factory, **kwargs):
256
+ """Instantiate a cipher object that performs CBC encryption/decryption.
257
+
258
+ :Parameters:
259
+ factory : module
260
+ The underlying block cipher, a module from ``Cryptodome.Cipher``.
261
+
262
+ :Keywords:
263
+ iv : bytes/bytearray/memoryview
264
+ The IV to use for CBC.
265
+
266
+ IV : bytes/bytearray/memoryview
267
+ Alias for ``iv``.
268
+
269
+ Any other keyword will be passed to the underlying block cipher.
270
+ See the relevant documentation for details (at least ``key`` will need
271
+ to be present).
272
+ """
273
+
274
+ cipher_state = factory._create_base_cipher(kwargs)
275
+ iv = kwargs.pop("IV", None)
276
+ IV = kwargs.pop("iv", None)
277
+
278
+ if (None, None) == (iv, IV):
279
+ iv = get_random_bytes(factory.block_size)
280
+ if iv is not None:
281
+ if IV is not None:
282
+ raise TypeError("You must either use 'iv' or 'IV', not both")
283
+ else:
284
+ iv = IV
285
+
286
+ if len(iv) != factory.block_size:
287
+ raise ValueError("Incorrect IV length (it must be %d bytes long)" %
288
+ factory.block_size)
289
+
290
+ if kwargs:
291
+ raise TypeError("Unknown parameters for CBC: %s" % str(kwargs))
292
+
293
+ return CbcMode(cipher_state, iv)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cbc.pyi ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, overload
2
+
3
+ from Cryptodome.Util._raw_api import SmartPointer
4
+
5
+ Buffer = Union[bytes, bytearray, memoryview]
6
+
7
+ __all__ = ['CbcMode']
8
+
9
+ class CbcMode(object):
10
+ block_size: int
11
+ iv: Buffer
12
+ IV: Buffer
13
+
14
+ def __init__(self,
15
+ block_cipher: SmartPointer,
16
+ iv: Buffer) -> None: ...
17
+ @overload
18
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
19
+ @overload
20
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
21
+ @overload
22
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
23
+ @overload
24
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
25
+
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ccm.py ADDED
@@ -0,0 +1,671 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2014, Legrandin <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ """
32
+ Counter with CBC-MAC (CCM) mode.
33
+ """
34
+
35
+ __all__ = ['CcmMode']
36
+
37
+ import struct
38
+ from binascii import unhexlify
39
+
40
+ from Cryptodome.Util.py3compat import (byte_string, bord,
41
+ _copy_bytes)
42
+ from Cryptodome.Util._raw_api import is_writeable_buffer
43
+
44
+ from Cryptodome.Util.strxor import strxor
45
+ from Cryptodome.Util.number import long_to_bytes
46
+
47
+ from Cryptodome.Hash import BLAKE2s
48
+ from Cryptodome.Random import get_random_bytes
49
+
50
+
51
+ def enum(**enums):
52
+ return type('Enum', (), enums)
53
+
54
+ MacStatus = enum(NOT_STARTED=0, PROCESSING_AUTH_DATA=1, PROCESSING_PLAINTEXT=2)
55
+
56
+
57
+ class CCMMessageTooLongError(ValueError):
58
+ pass
59
+
60
+
61
+ class CcmMode(object):
62
+ """Counter with CBC-MAC (CCM).
63
+
64
+ This is an Authenticated Encryption with Associated Data (`AEAD`_) mode.
65
+ It provides both confidentiality and authenticity.
66
+
67
+ The header of the message may be left in the clear, if needed, and it will
68
+ still be subject to authentication. The decryption step tells the receiver
69
+ if the message comes from a source that really knowns the secret key.
70
+ Additionally, decryption detects if any part of the message - including the
71
+ header - has been modified or corrupted.
72
+
73
+ This mode requires a nonce. The nonce shall never repeat for two
74
+ different messages encrypted with the same key, but it does not need
75
+ to be random.
76
+ Note that there is a trade-off between the size of the nonce and the
77
+ maximum size of a single message you can encrypt.
78
+
79
+ It is important to use a large nonce if the key is reused across several
80
+ messages and the nonce is chosen randomly.
81
+
82
+ It is acceptable to us a short nonce if the key is only used a few times or
83
+ if the nonce is taken from a counter.
84
+
85
+ The following table shows the trade-off when the nonce is chosen at
86
+ random. The column on the left shows how many messages it takes
87
+ for the keystream to repeat **on average**. In practice, you will want to
88
+ stop using the key way before that.
89
+
90
+ +--------------------+---------------+-------------------+
91
+ | Avg. # of messages | nonce | Max. message |
92
+ | before keystream | size | size |
93
+ | repeats | (bytes) | (bytes) |
94
+ +====================+===============+===================+
95
+ | 2^52 | 13 | 64K |
96
+ +--------------------+---------------+-------------------+
97
+ | 2^48 | 12 | 16M |
98
+ +--------------------+---------------+-------------------+
99
+ | 2^44 | 11 | 4G |
100
+ +--------------------+---------------+-------------------+
101
+ | 2^40 | 10 | 1T |
102
+ +--------------------+---------------+-------------------+
103
+ | 2^36 | 9 | 64P |
104
+ +--------------------+---------------+-------------------+
105
+ | 2^32 | 8 | 16E |
106
+ +--------------------+---------------+-------------------+
107
+
108
+ This mode is only available for ciphers that operate on 128 bits blocks
109
+ (e.g. AES but not TDES).
110
+
111
+ See `NIST SP800-38C`_ or RFC3610_.
112
+
113
+ .. _`NIST SP800-38C`: http://csrc.nist.gov/publications/nistpubs/800-38C/SP800-38C.pdf
114
+ .. _RFC3610: https://tools.ietf.org/html/rfc3610
115
+ .. _AEAD: http://blog.cryptographyengineering.com/2012/05/how-to-choose-authenticated-encryption.html
116
+
117
+ :undocumented: __init__
118
+ """
119
+
120
+ def __init__(self, factory, key, nonce, mac_len, msg_len, assoc_len,
121
+ cipher_params):
122
+
123
+ self.block_size = factory.block_size
124
+ """The block size of the underlying cipher, in bytes."""
125
+
126
+ self.nonce = _copy_bytes(None, None, nonce)
127
+ """The nonce used for this cipher instance"""
128
+
129
+ self._factory = factory
130
+ self._key = _copy_bytes(None, None, key)
131
+ self._mac_len = mac_len
132
+ self._msg_len = msg_len
133
+ self._assoc_len = assoc_len
134
+ self._cipher_params = cipher_params
135
+
136
+ self._mac_tag = None # Cache for MAC tag
137
+
138
+ if self.block_size != 16:
139
+ raise ValueError("CCM mode is only available for ciphers"
140
+ " that operate on 128 bits blocks")
141
+
142
+ # MAC tag length (Tlen)
143
+ if mac_len not in (4, 6, 8, 10, 12, 14, 16):
144
+ raise ValueError("Parameter 'mac_len' must be even"
145
+ " and in the range 4..16 (not %d)" % mac_len)
146
+
147
+ # Nonce value
148
+ if not (7 <= len(nonce) <= 13):
149
+ raise ValueError("Length of parameter 'nonce' must be"
150
+ " in the range 7..13 bytes")
151
+
152
+ # Message length (if known already)
153
+ q = 15 - len(nonce) # length of Q, the encoded message length
154
+ if msg_len and len(long_to_bytes(msg_len)) > q:
155
+ raise CCMMessageTooLongError("Message too long for a %u-byte nonce" % len(nonce))
156
+
157
+ # Create MAC object (the tag will be the last block
158
+ # bytes worth of ciphertext)
159
+ self._mac = self._factory.new(key,
160
+ factory.MODE_CBC,
161
+ iv=b'\x00' * 16,
162
+ **cipher_params)
163
+ self._mac_status = MacStatus.NOT_STARTED
164
+ self._t = None
165
+
166
+ # Allowed transitions after initialization
167
+ self._next = ["update", "encrypt", "decrypt",
168
+ "digest", "verify"]
169
+
170
+ # Cumulative lengths
171
+ self._cumul_assoc_len = 0
172
+ self._cumul_msg_len = 0
173
+
174
+ # Cache for unaligned associated data/plaintext.
175
+ # This is a list with byte strings, but when the MAC starts,
176
+ # it will become a binary string no longer than the block size.
177
+ self._cache = []
178
+
179
+ # Start CTR cipher, by formatting the counter (A.3)
180
+ self._cipher = self._factory.new(key,
181
+ self._factory.MODE_CTR,
182
+ nonce=struct.pack("B", q - 1) + self.nonce,
183
+ **cipher_params)
184
+
185
+ # S_0, step 6 in 6.1 for j=0
186
+ self._s_0 = self._cipher.encrypt(b'\x00' * 16)
187
+
188
+ # Try to start the MAC
189
+ if None not in (assoc_len, msg_len):
190
+ self._start_mac()
191
+
192
+ def _start_mac(self):
193
+
194
+ assert(self._mac_status == MacStatus.NOT_STARTED)
195
+ assert(None not in (self._assoc_len, self._msg_len))
196
+ assert(isinstance(self._cache, list))
197
+
198
+ # Formatting control information and nonce (A.2.1)
199
+ q = 15 - len(self.nonce) # length of Q, the encoded message length (2..8)
200
+ flags = (self._assoc_len > 0) << 6
201
+ flags |= ((self._mac_len - 2) // 2) << 3
202
+ flags |= q - 1
203
+ b_0 = struct.pack("B", flags) + self.nonce + long_to_bytes(self._msg_len, q)
204
+
205
+ # Formatting associated data (A.2.2)
206
+ # Encoded 'a' is concatenated with the associated data 'A'
207
+ assoc_len_encoded = b''
208
+ if self._assoc_len > 0:
209
+ if self._assoc_len < (2 ** 16 - 2 ** 8):
210
+ enc_size = 2
211
+ elif self._assoc_len < (2 ** 32):
212
+ assoc_len_encoded = b'\xFF\xFE'
213
+ enc_size = 4
214
+ else:
215
+ assoc_len_encoded = b'\xFF\xFF'
216
+ enc_size = 8
217
+ assoc_len_encoded += long_to_bytes(self._assoc_len, enc_size)
218
+
219
+ # b_0 and assoc_len_encoded must be processed first
220
+ self._cache.insert(0, b_0)
221
+ self._cache.insert(1, assoc_len_encoded)
222
+
223
+ # Process all the data cached so far
224
+ first_data_to_mac = b"".join(self._cache)
225
+ self._cache = b""
226
+ self._mac_status = MacStatus.PROCESSING_AUTH_DATA
227
+ self._update(first_data_to_mac)
228
+
229
+ def _pad_cache_and_update(self):
230
+
231
+ assert(self._mac_status != MacStatus.NOT_STARTED)
232
+ assert(len(self._cache) < self.block_size)
233
+
234
+ # Associated data is concatenated with the least number
235
+ # of zero bytes (possibly none) to reach alignment to
236
+ # the 16 byte boundary (A.2.3)
237
+ len_cache = len(self._cache)
238
+ if len_cache > 0:
239
+ self._update(b'\x00' * (self.block_size - len_cache))
240
+
241
+ def update(self, assoc_data):
242
+ """Protect associated data
243
+
244
+ If there is any associated data, the caller has to invoke
245
+ this function one or more times, before using
246
+ ``decrypt`` or ``encrypt``.
247
+
248
+ By *associated data* it is meant any data (e.g. packet headers) that
249
+ will not be encrypted and will be transmitted in the clear.
250
+ However, the receiver is still able to detect any modification to it.
251
+ In CCM, the *associated data* is also called
252
+ *additional authenticated data* (AAD).
253
+
254
+ If there is no associated data, this method must not be called.
255
+
256
+ The caller may split associated data in segments of any size, and
257
+ invoke this method multiple times, each time with the next segment.
258
+
259
+ :Parameters:
260
+ assoc_data : bytes/bytearray/memoryview
261
+ A piece of associated data. There are no restrictions on its size.
262
+ """
263
+
264
+ if "update" not in self._next:
265
+ raise TypeError("update() can only be called"
266
+ " immediately after initialization")
267
+
268
+ self._next = ["update", "encrypt", "decrypt",
269
+ "digest", "verify"]
270
+
271
+ self._cumul_assoc_len += len(assoc_data)
272
+ if self._assoc_len is not None and \
273
+ self._cumul_assoc_len > self._assoc_len:
274
+ raise ValueError("Associated data is too long")
275
+
276
+ self._update(assoc_data)
277
+ return self
278
+
279
+ def _update(self, assoc_data_pt=b""):
280
+ """Update the MAC with associated data or plaintext
281
+ (without FSM checks)"""
282
+
283
+ # If MAC has not started yet, we just park the data into a list.
284
+ # If the data is mutable, we create a copy and store that instead.
285
+ if self._mac_status == MacStatus.NOT_STARTED:
286
+ if is_writeable_buffer(assoc_data_pt):
287
+ assoc_data_pt = _copy_bytes(None, None, assoc_data_pt)
288
+ self._cache.append(assoc_data_pt)
289
+ return
290
+
291
+ assert(len(self._cache) < self.block_size)
292
+
293
+ if len(self._cache) > 0:
294
+ filler = min(self.block_size - len(self._cache),
295
+ len(assoc_data_pt))
296
+ self._cache += _copy_bytes(None, filler, assoc_data_pt)
297
+ assoc_data_pt = _copy_bytes(filler, None, assoc_data_pt)
298
+
299
+ if len(self._cache) < self.block_size:
300
+ return
301
+
302
+ # The cache is exactly one block
303
+ self._t = self._mac.encrypt(self._cache)
304
+ self._cache = b""
305
+
306
+ update_len = len(assoc_data_pt) // self.block_size * self.block_size
307
+ self._cache = _copy_bytes(update_len, None, assoc_data_pt)
308
+ if update_len > 0:
309
+ self._t = self._mac.encrypt(assoc_data_pt[:update_len])[-16:]
310
+
311
+ def encrypt(self, plaintext, output=None):
312
+ """Encrypt data with the key set at initialization.
313
+
314
+ A cipher object is stateful: once you have encrypted a message
315
+ you cannot encrypt (or decrypt) another message using the same
316
+ object.
317
+
318
+ This method can be called only **once** if ``msg_len`` was
319
+ not passed at initialization.
320
+
321
+ If ``msg_len`` was given, the data to encrypt can be broken
322
+ up in two or more pieces and `encrypt` can be called
323
+ multiple times.
324
+
325
+ That is, the statement:
326
+
327
+ >>> c.encrypt(a) + c.encrypt(b)
328
+
329
+ is equivalent to:
330
+
331
+ >>> c.encrypt(a+b)
332
+
333
+ This function does not add any padding to the plaintext.
334
+
335
+ :Parameters:
336
+ plaintext : bytes/bytearray/memoryview
337
+ The piece of data to encrypt.
338
+ It can be of any length.
339
+ :Keywords:
340
+ output : bytearray/memoryview
341
+ The location where the ciphertext must be written to.
342
+ If ``None``, the ciphertext is returned.
343
+ :Return:
344
+ If ``output`` is ``None``, the ciphertext as ``bytes``.
345
+ Otherwise, ``None``.
346
+ """
347
+
348
+ if "encrypt" not in self._next:
349
+ raise TypeError("encrypt() can only be called after"
350
+ " initialization or an update()")
351
+ self._next = ["encrypt", "digest"]
352
+
353
+ # No more associated data allowed from now
354
+ if self._assoc_len is None:
355
+ assert(isinstance(self._cache, list))
356
+ self._assoc_len = sum([len(x) for x in self._cache])
357
+ if self._msg_len is not None:
358
+ self._start_mac()
359
+ else:
360
+ if self._cumul_assoc_len < self._assoc_len:
361
+ raise ValueError("Associated data is too short")
362
+
363
+ # Only once piece of plaintext accepted if message length was
364
+ # not declared in advance
365
+ if self._msg_len is None:
366
+ q = 15 - len(self.nonce)
367
+ if len(long_to_bytes(len(plaintext))) > q:
368
+ raise CCMMessageTooLongError("Message too long for a %u-byte nonce" % len(self.nonce))
369
+
370
+ self._msg_len = len(plaintext)
371
+ self._start_mac()
372
+ self._next = ["digest"]
373
+
374
+ self._cumul_msg_len += len(plaintext)
375
+ if self._cumul_msg_len > self._msg_len:
376
+ msg = "Message longer than declared for (%u bytes vs %u bytes" % \
377
+ (self._cumul_msg_len, self._msg_len)
378
+ raise CCMMessageTooLongError(msg)
379
+
380
+ if self._mac_status == MacStatus.PROCESSING_AUTH_DATA:
381
+ # Associated data is concatenated with the least number
382
+ # of zero bytes (possibly none) to reach alignment to
383
+ # the 16 byte boundary (A.2.3)
384
+ self._pad_cache_and_update()
385
+ self._mac_status = MacStatus.PROCESSING_PLAINTEXT
386
+
387
+ self._update(plaintext)
388
+ return self._cipher.encrypt(plaintext, output=output)
389
+
390
+ def decrypt(self, ciphertext, output=None):
391
+ """Decrypt data with the key set at initialization.
392
+
393
+ A cipher object is stateful: once you have decrypted a message
394
+ you cannot decrypt (or encrypt) another message with the same
395
+ object.
396
+
397
+ This method can be called only **once** if ``msg_len`` was
398
+ not passed at initialization.
399
+
400
+ If ``msg_len`` was given, the data to decrypt can be
401
+ broken up in two or more pieces and `decrypt` can be
402
+ called multiple times.
403
+
404
+ That is, the statement:
405
+
406
+ >>> c.decrypt(a) + c.decrypt(b)
407
+
408
+ is equivalent to:
409
+
410
+ >>> c.decrypt(a+b)
411
+
412
+ This function does not remove any padding from the plaintext.
413
+
414
+ :Parameters:
415
+ ciphertext : bytes/bytearray/memoryview
416
+ The piece of data to decrypt.
417
+ It can be of any length.
418
+ :Keywords:
419
+ output : bytearray/memoryview
420
+ The location where the plaintext must be written to.
421
+ If ``None``, the plaintext is returned.
422
+ :Return:
423
+ If ``output`` is ``None``, the plaintext as ``bytes``.
424
+ Otherwise, ``None``.
425
+ """
426
+
427
+ if "decrypt" not in self._next:
428
+ raise TypeError("decrypt() can only be called"
429
+ " after initialization or an update()")
430
+ self._next = ["decrypt", "verify"]
431
+
432
+ # No more associated data allowed from now
433
+ if self._assoc_len is None:
434
+ assert(isinstance(self._cache, list))
435
+ self._assoc_len = sum([len(x) for x in self._cache])
436
+ if self._msg_len is not None:
437
+ self._start_mac()
438
+ else:
439
+ if self._cumul_assoc_len < self._assoc_len:
440
+ raise ValueError("Associated data is too short")
441
+
442
+ # Only once piece of ciphertext accepted if message length was
443
+ # not declared in advance
444
+ if self._msg_len is None:
445
+ q = 15 - len(self.nonce)
446
+ if len(long_to_bytes(len(ciphertext))) > q:
447
+ raise CCMMessageTooLongError("Message too long for a %u-byte nonce" % len(self.nonce))
448
+
449
+ self._msg_len = len(ciphertext)
450
+ self._start_mac()
451
+ self._next = ["verify"]
452
+
453
+ self._cumul_msg_len += len(ciphertext)
454
+ if self._cumul_msg_len > self._msg_len:
455
+ msg = "Message longer than declared for (%u bytes vs %u bytes" % \
456
+ (self._cumul_msg_len, self._msg_len)
457
+ raise CCMMessageTooLongError(msg)
458
+
459
+ if self._mac_status == MacStatus.PROCESSING_AUTH_DATA:
460
+ # Associated data is concatenated with the least number
461
+ # of zero bytes (possibly none) to reach alignment to
462
+ # the 16 byte boundary (A.2.3)
463
+ self._pad_cache_and_update()
464
+ self._mac_status = MacStatus.PROCESSING_PLAINTEXT
465
+
466
+ # Encrypt is equivalent to decrypt with the CTR mode
467
+ plaintext = self._cipher.encrypt(ciphertext, output=output)
468
+ if output is None:
469
+ self._update(plaintext)
470
+ else:
471
+ self._update(output)
472
+ return plaintext
473
+
474
+ def digest(self):
475
+ """Compute the *binary* MAC tag.
476
+
477
+ The caller invokes this function at the very end.
478
+
479
+ This method returns the MAC that shall be sent to the receiver,
480
+ together with the ciphertext.
481
+
482
+ :Return: the MAC, as a byte string.
483
+ """
484
+
485
+ if "digest" not in self._next:
486
+ raise TypeError("digest() cannot be called when decrypting"
487
+ " or validating a message")
488
+ self._next = ["digest"]
489
+ return self._digest()
490
+
491
+ def _digest(self):
492
+ if self._mac_tag:
493
+ return self._mac_tag
494
+
495
+ if self._assoc_len is None:
496
+ assert(isinstance(self._cache, list))
497
+ self._assoc_len = sum([len(x) for x in self._cache])
498
+ if self._msg_len is not None:
499
+ self._start_mac()
500
+ else:
501
+ if self._cumul_assoc_len < self._assoc_len:
502
+ raise ValueError("Associated data is too short")
503
+
504
+ if self._msg_len is None:
505
+ self._msg_len = 0
506
+ self._start_mac()
507
+
508
+ if self._cumul_msg_len != self._msg_len:
509
+ raise ValueError("Message is too short")
510
+
511
+ # Both associated data and payload are concatenated with the least
512
+ # number of zero bytes (possibly none) that align it to the
513
+ # 16 byte boundary (A.2.2 and A.2.3)
514
+ self._pad_cache_and_update()
515
+
516
+ # Step 8 in 6.1 (T xor MSB_Tlen(S_0))
517
+ self._mac_tag = strxor(self._t, self._s_0)[:self._mac_len]
518
+
519
+ return self._mac_tag
520
+
521
+ def hexdigest(self):
522
+ """Compute the *printable* MAC tag.
523
+
524
+ This method is like `digest`.
525
+
526
+ :Return: the MAC, as a hexadecimal string.
527
+ """
528
+ return "".join(["%02x" % bord(x) for x in self.digest()])
529
+
530
+ def verify(self, received_mac_tag):
531
+ """Validate the *binary* MAC tag.
532
+
533
+ The caller invokes this function at the very end.
534
+
535
+ This method checks if the decrypted message is indeed valid
536
+ (that is, if the key is correct) and it has not been
537
+ tampered with while in transit.
538
+
539
+ :Parameters:
540
+ received_mac_tag : bytes/bytearray/memoryview
541
+ This is the *binary* MAC, as received from the sender.
542
+ :Raises ValueError:
543
+ if the MAC does not match. The message has been tampered with
544
+ or the key is incorrect.
545
+ """
546
+
547
+ if "verify" not in self._next:
548
+ raise TypeError("verify() cannot be called"
549
+ " when encrypting a message")
550
+ self._next = ["verify"]
551
+
552
+ self._digest()
553
+ secret = get_random_bytes(16)
554
+
555
+ mac1 = BLAKE2s.new(digest_bits=160, key=secret, data=self._mac_tag)
556
+ mac2 = BLAKE2s.new(digest_bits=160, key=secret, data=received_mac_tag)
557
+
558
+ if mac1.digest() != mac2.digest():
559
+ raise ValueError("MAC check failed")
560
+
561
+ def hexverify(self, hex_mac_tag):
562
+ """Validate the *printable* MAC tag.
563
+
564
+ This method is like `verify`.
565
+
566
+ :Parameters:
567
+ hex_mac_tag : string
568
+ This is the *printable* MAC, as received from the sender.
569
+ :Raises ValueError:
570
+ if the MAC does not match. The message has been tampered with
571
+ or the key is incorrect.
572
+ """
573
+
574
+ self.verify(unhexlify(hex_mac_tag))
575
+
576
+ def encrypt_and_digest(self, plaintext, output=None):
577
+ """Perform encrypt() and digest() in one step.
578
+
579
+ :Parameters:
580
+ plaintext : bytes/bytearray/memoryview
581
+ The piece of data to encrypt.
582
+ :Keywords:
583
+ output : bytearray/memoryview
584
+ The location where the ciphertext must be written to.
585
+ If ``None``, the ciphertext is returned.
586
+ :Return:
587
+ a tuple with two items:
588
+
589
+ - the ciphertext, as ``bytes``
590
+ - the MAC tag, as ``bytes``
591
+
592
+ The first item becomes ``None`` when the ``output`` parameter
593
+ specified a location for the result.
594
+ """
595
+
596
+ return self.encrypt(plaintext, output=output), self.digest()
597
+
598
+ def decrypt_and_verify(self, ciphertext, received_mac_tag, output=None):
599
+ """Perform decrypt() and verify() in one step.
600
+
601
+ :Parameters:
602
+ ciphertext : bytes/bytearray/memoryview
603
+ The piece of data to decrypt.
604
+ received_mac_tag : bytes/bytearray/memoryview
605
+ This is the *binary* MAC, as received from the sender.
606
+ :Keywords:
607
+ output : bytearray/memoryview
608
+ The location where the plaintext must be written to.
609
+ If ``None``, the plaintext is returned.
610
+ :Return: the plaintext as ``bytes`` or ``None`` when the ``output``
611
+ parameter specified a location for the result.
612
+ :Raises ValueError:
613
+ if the MAC does not match. The message has been tampered with
614
+ or the key is incorrect.
615
+ """
616
+
617
+ plaintext = self.decrypt(ciphertext, output=output)
618
+ self.verify(received_mac_tag)
619
+ return plaintext
620
+
621
+
622
+ def _create_ccm_cipher(factory, **kwargs):
623
+ """Create a new block cipher, configured in CCM mode.
624
+
625
+ :Parameters:
626
+ factory : module
627
+ A symmetric cipher module from `Cryptodome.Cipher` (like
628
+ `Cryptodome.Cipher.AES`).
629
+
630
+ :Keywords:
631
+ key : bytes/bytearray/memoryview
632
+ The secret key to use in the symmetric cipher.
633
+
634
+ nonce : bytes/bytearray/memoryview
635
+ A value that must never be reused for any other encryption.
636
+
637
+ Its length must be in the range ``[7..13]``.
638
+ 11 or 12 bytes are reasonable values in general. Bear in
639
+ mind that with CCM there is a trade-off between nonce length and
640
+ maximum message size.
641
+
642
+ If not specified, a 11 byte long random string is used.
643
+
644
+ mac_len : integer
645
+ Length of the MAC, in bytes. It must be even and in
646
+ the range ``[4..16]``. The default is 16.
647
+
648
+ msg_len : integer
649
+ Length of the message to (de)cipher.
650
+ If not specified, ``encrypt`` or ``decrypt`` may only be called once.
651
+
652
+ assoc_len : integer
653
+ Length of the associated data.
654
+ If not specified, all data is internally buffered.
655
+ """
656
+
657
+ try:
658
+ key = key = kwargs.pop("key")
659
+ except KeyError as e:
660
+ raise TypeError("Missing parameter: " + str(e))
661
+
662
+ nonce = kwargs.pop("nonce", None) # N
663
+ if nonce is None:
664
+ nonce = get_random_bytes(11)
665
+ mac_len = kwargs.pop("mac_len", factory.block_size)
666
+ msg_len = kwargs.pop("msg_len", None) # p
667
+ assoc_len = kwargs.pop("assoc_len", None) # a
668
+ cipher_params = dict(kwargs)
669
+
670
+ return CcmMode(factory, key, nonce, mac_len, msg_len,
671
+ assoc_len, cipher_params)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ccm.pyi ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from types import ModuleType
2
+ from typing import Union, overload, Dict, Tuple, Optional
3
+
4
+ Buffer = Union[bytes, bytearray, memoryview]
5
+
6
+ __all__ = ['CcmMode']
7
+
8
+
9
+ class CCMMessageTooLongError(ValueError):
10
+ pass
11
+
12
+
13
+ class CcmMode(object):
14
+ block_size: int
15
+ nonce: bytes
16
+
17
+ def __init__(self,
18
+ factory: ModuleType,
19
+ key: Buffer,
20
+ nonce: Buffer,
21
+ mac_len: int,
22
+ msg_len: Optional[int],
23
+ assoc_len: Optional[int],
24
+ cipher_params: Dict) -> None: ...
25
+
26
+ def update(self, assoc_data: Buffer) -> CcmMode: ...
27
+
28
+ @overload
29
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
30
+ @overload
31
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
32
+ @overload
33
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
34
+ @overload
35
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
36
+
37
+ def digest(self) -> bytes: ...
38
+ def hexdigest(self) -> str: ...
39
+ def verify(self, received_mac_tag: Buffer) -> None: ...
40
+ def hexverify(self, hex_mac_tag: str) -> None: ...
41
+
42
+ @overload
43
+ def encrypt_and_digest(self,
44
+ plaintext: Buffer) -> Tuple[bytes, bytes]: ...
45
+ @overload
46
+ def encrypt_and_digest(self,
47
+ plaintext: Buffer,
48
+ output: Buffer) -> Tuple[None, bytes]: ...
49
+ def decrypt_and_verify(self,
50
+ ciphertext: Buffer,
51
+ received_mac_tag: Buffer,
52
+ output: Optional[Union[bytearray, memoryview]] = ...) -> bytes: ...
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cfb.py ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/mode_cfb.py : CFB mode
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ """
24
+ Counter Feedback (CFB) mode.
25
+ """
26
+
27
+ __all__ = ['CfbMode']
28
+
29
+ from Cryptodome.Util.py3compat import _copy_bytes
30
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib, VoidPointer,
31
+ create_string_buffer, get_raw_buffer,
32
+ SmartPointer, c_size_t, c_uint8_ptr,
33
+ is_writeable_buffer)
34
+
35
+ from Cryptodome.Random import get_random_bytes
36
+
37
+ raw_cfb_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_cfb","""
38
+ int CFB_start_operation(void *cipher,
39
+ const uint8_t iv[],
40
+ size_t iv_len,
41
+ size_t segment_len, /* In bytes */
42
+ void **pResult);
43
+ int CFB_encrypt(void *cfbState,
44
+ const uint8_t *in,
45
+ uint8_t *out,
46
+ size_t data_len);
47
+ int CFB_decrypt(void *cfbState,
48
+ const uint8_t *in,
49
+ uint8_t *out,
50
+ size_t data_len);
51
+ int CFB_stop_operation(void *state);"""
52
+ )
53
+
54
+
55
+ class CfbMode(object):
56
+ """*Cipher FeedBack (CFB)*.
57
+
58
+ This mode is similar to CFB, but it transforms
59
+ the underlying block cipher into a stream cipher.
60
+
61
+ Plaintext and ciphertext are processed in *segments*
62
+ of **s** bits. The mode is therefore sometimes
63
+ labelled **s**-bit CFB.
64
+
65
+ An Initialization Vector (*IV*) is required.
66
+
67
+ See `NIST SP800-38A`_ , Section 6.3.
68
+
69
+ .. _`NIST SP800-38A` : http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
70
+
71
+ :undocumented: __init__
72
+ """
73
+
74
+ def __init__(self, block_cipher, iv, segment_size):
75
+ """Create a new block cipher, configured in CFB mode.
76
+
77
+ :Parameters:
78
+ block_cipher : C pointer
79
+ A smart pointer to the low-level block cipher instance.
80
+
81
+ iv : bytes/bytearray/memoryview
82
+ The initialization vector to use for encryption or decryption.
83
+ It is as long as the cipher block.
84
+
85
+ **The IV must be unpredictable**. Ideally it is picked randomly.
86
+
87
+ Reusing the *IV* for encryptions performed with the same key
88
+ compromises confidentiality.
89
+
90
+ segment_size : integer
91
+ The number of bytes the plaintext and ciphertext are segmented in.
92
+ """
93
+
94
+ self._state = VoidPointer()
95
+ result = raw_cfb_lib.CFB_start_operation(block_cipher.get(),
96
+ c_uint8_ptr(iv),
97
+ c_size_t(len(iv)),
98
+ c_size_t(segment_size),
99
+ self._state.address_of())
100
+ if result:
101
+ raise ValueError("Error %d while instantiating the CFB mode" % result)
102
+
103
+ # Ensure that object disposal of this Python object will (eventually)
104
+ # free the memory allocated by the raw library for the cipher mode
105
+ self._state = SmartPointer(self._state.get(),
106
+ raw_cfb_lib.CFB_stop_operation)
107
+
108
+ # Memory allocated for the underlying block cipher is now owed
109
+ # by the cipher mode
110
+ block_cipher.release()
111
+
112
+ self.block_size = len(iv)
113
+ """The block size of the underlying cipher, in bytes."""
114
+
115
+ self.iv = _copy_bytes(None, None, iv)
116
+ """The Initialization Vector originally used to create the object.
117
+ The value does not change."""
118
+
119
+ self.IV = self.iv
120
+ """Alias for `iv`"""
121
+
122
+ self._next = ["encrypt", "decrypt"]
123
+
124
+ def encrypt(self, plaintext, output=None):
125
+ """Encrypt data with the key and the parameters set at initialization.
126
+
127
+ A cipher object is stateful: once you have encrypted a message
128
+ you cannot encrypt (or decrypt) another message using the same
129
+ object.
130
+
131
+ The data to encrypt can be broken up in two or
132
+ more pieces and `encrypt` can be called multiple times.
133
+
134
+ That is, the statement:
135
+
136
+ >>> c.encrypt(a) + c.encrypt(b)
137
+
138
+ is equivalent to:
139
+
140
+ >>> c.encrypt(a+b)
141
+
142
+ This function does not add any padding to the plaintext.
143
+
144
+ :Parameters:
145
+ plaintext : bytes/bytearray/memoryview
146
+ The piece of data to encrypt.
147
+ It can be of any length.
148
+ :Keywords:
149
+ output : bytearray/memoryview
150
+ The location where the ciphertext must be written to.
151
+ If ``None``, the ciphertext is returned.
152
+ :Return:
153
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
154
+ Otherwise, ``None``.
155
+ """
156
+
157
+ if "encrypt" not in self._next:
158
+ raise TypeError("encrypt() cannot be called after decrypt()")
159
+ self._next = ["encrypt"]
160
+
161
+ if output is None:
162
+ ciphertext = create_string_buffer(len(plaintext))
163
+ else:
164
+ ciphertext = output
165
+
166
+ if not is_writeable_buffer(output):
167
+ raise TypeError("output must be a bytearray or a writeable memoryview")
168
+
169
+ if len(plaintext) != len(output):
170
+ raise ValueError("output must have the same length as the input"
171
+ " (%d bytes)" % len(plaintext))
172
+
173
+ result = raw_cfb_lib.CFB_encrypt(self._state.get(),
174
+ c_uint8_ptr(plaintext),
175
+ c_uint8_ptr(ciphertext),
176
+ c_size_t(len(plaintext)))
177
+ if result:
178
+ raise ValueError("Error %d while encrypting in CFB mode" % result)
179
+
180
+ if output is None:
181
+ return get_raw_buffer(ciphertext)
182
+ else:
183
+ return None
184
+
185
+ def decrypt(self, ciphertext, output=None):
186
+ """Decrypt data with the key and the parameters set at initialization.
187
+
188
+ A cipher object is stateful: once you have decrypted a message
189
+ you cannot decrypt (or encrypt) another message with the same
190
+ object.
191
+
192
+ The data to decrypt can be broken up in two or
193
+ more pieces and `decrypt` can be called multiple times.
194
+
195
+ That is, the statement:
196
+
197
+ >>> c.decrypt(a) + c.decrypt(b)
198
+
199
+ is equivalent to:
200
+
201
+ >>> c.decrypt(a+b)
202
+
203
+ This function does not remove any padding from the plaintext.
204
+
205
+ :Parameters:
206
+ ciphertext : bytes/bytearray/memoryview
207
+ The piece of data to decrypt.
208
+ It can be of any length.
209
+ :Keywords:
210
+ output : bytearray/memoryview
211
+ The location where the plaintext must be written to.
212
+ If ``None``, the plaintext is returned.
213
+ :Return:
214
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
215
+ Otherwise, ``None``.
216
+ """
217
+
218
+ if "decrypt" not in self._next:
219
+ raise TypeError("decrypt() cannot be called after encrypt()")
220
+ self._next = ["decrypt"]
221
+
222
+ if output is None:
223
+ plaintext = create_string_buffer(len(ciphertext))
224
+ else:
225
+ plaintext = output
226
+
227
+ if not is_writeable_buffer(output):
228
+ raise TypeError("output must be a bytearray or a writeable memoryview")
229
+
230
+ if len(ciphertext) != len(output):
231
+ raise ValueError("output must have the same length as the input"
232
+ " (%d bytes)" % len(plaintext))
233
+
234
+ result = raw_cfb_lib.CFB_decrypt(self._state.get(),
235
+ c_uint8_ptr(ciphertext),
236
+ c_uint8_ptr(plaintext),
237
+ c_size_t(len(ciphertext)))
238
+ if result:
239
+ raise ValueError("Error %d while decrypting in CFB mode" % result)
240
+
241
+ if output is None:
242
+ return get_raw_buffer(plaintext)
243
+ else:
244
+ return None
245
+
246
+
247
+ def _create_cfb_cipher(factory, **kwargs):
248
+ """Instantiate a cipher object that performs CFB encryption/decryption.
249
+
250
+ :Parameters:
251
+ factory : module
252
+ The underlying block cipher, a module from ``Cryptodome.Cipher``.
253
+
254
+ :Keywords:
255
+ iv : bytes/bytearray/memoryview
256
+ The IV to use for CFB.
257
+
258
+ IV : bytes/bytearray/memoryview
259
+ Alias for ``iv``.
260
+
261
+ segment_size : integer
262
+ The number of bit the plaintext and ciphertext are segmented in.
263
+ If not present, the default is 8.
264
+
265
+ Any other keyword will be passed to the underlying block cipher.
266
+ See the relevant documentation for details (at least ``key`` will need
267
+ to be present).
268
+ """
269
+
270
+ cipher_state = factory._create_base_cipher(kwargs)
271
+
272
+ iv = kwargs.pop("IV", None)
273
+ IV = kwargs.pop("iv", None)
274
+
275
+ if (None, None) == (iv, IV):
276
+ iv = get_random_bytes(factory.block_size)
277
+ if iv is not None:
278
+ if IV is not None:
279
+ raise TypeError("You must either use 'iv' or 'IV', not both")
280
+ else:
281
+ iv = IV
282
+
283
+ if len(iv) != factory.block_size:
284
+ raise ValueError("Incorrect IV length (it must be %d bytes long)" %
285
+ factory.block_size)
286
+
287
+ segment_size_bytes, rem = divmod(kwargs.pop("segment_size", 8), 8)
288
+ if segment_size_bytes == 0 or rem != 0:
289
+ raise ValueError("'segment_size' must be positive and multiple of 8 bits")
290
+
291
+ if kwargs:
292
+ raise TypeError("Unknown parameters for CFB: %s" % str(kwargs))
293
+ return CfbMode(cipher_state, iv, segment_size_bytes)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_cfb.pyi ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, overload
2
+
3
+ from Cryptodome.Util._raw_api import SmartPointer
4
+
5
+ Buffer = Union[bytes, bytearray, memoryview]
6
+
7
+ __all__ = ['CfbMode']
8
+
9
+
10
+ class CfbMode(object):
11
+ block_size: int
12
+ iv: Buffer
13
+ IV: Buffer
14
+
15
+ def __init__(self,
16
+ block_cipher: SmartPointer,
17
+ iv: Buffer,
18
+ segment_size: int) -> None: ...
19
+ @overload
20
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
21
+ @overload
22
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
23
+ @overload
24
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
25
+ @overload
26
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ctr.py ADDED
@@ -0,0 +1,393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/mode_ctr.py : CTR mode
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ """
24
+ Counter (CTR) mode.
25
+ """
26
+
27
+ __all__ = ['CtrMode']
28
+
29
+ import struct
30
+
31
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib, VoidPointer,
32
+ create_string_buffer, get_raw_buffer,
33
+ SmartPointer, c_size_t, c_uint8_ptr,
34
+ is_writeable_buffer)
35
+
36
+ from Cryptodome.Random import get_random_bytes
37
+ from Cryptodome.Util.py3compat import _copy_bytes, is_native_int
38
+ from Cryptodome.Util.number import long_to_bytes
39
+
40
+ raw_ctr_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_ctr", """
41
+ int CTR_start_operation(void *cipher,
42
+ uint8_t initialCounterBlock[],
43
+ size_t initialCounterBlock_len,
44
+ size_t prefix_len,
45
+ unsigned counter_len,
46
+ unsigned littleEndian,
47
+ void **pResult);
48
+ int CTR_encrypt(void *ctrState,
49
+ const uint8_t *in,
50
+ uint8_t *out,
51
+ size_t data_len);
52
+ int CTR_decrypt(void *ctrState,
53
+ const uint8_t *in,
54
+ uint8_t *out,
55
+ size_t data_len);
56
+ int CTR_stop_operation(void *ctrState);"""
57
+ )
58
+
59
+
60
+ class CtrMode(object):
61
+ """*CounTeR (CTR)* mode.
62
+
63
+ This mode is very similar to ECB, in that
64
+ encryption of one block is done independently of all other blocks.
65
+
66
+ Unlike ECB, the block *position* contributes to the encryption
67
+ and no information leaks about symbol frequency.
68
+
69
+ Each message block is associated to a *counter* which
70
+ must be unique across all messages that get encrypted
71
+ with the same key (not just within the same message).
72
+ The counter is as big as the block size.
73
+
74
+ Counters can be generated in several ways. The most
75
+ straightword one is to choose an *initial counter block*
76
+ (which can be made public, similarly to the *IV* for the
77
+ other modes) and increment its lowest **m** bits by one
78
+ (modulo *2^m*) for each block. In most cases, **m** is
79
+ chosen to be half the block size.
80
+
81
+ See `NIST SP800-38A`_, Section 6.5 (for the mode) and
82
+ Appendix B (for how to manage the *initial counter block*).
83
+
84
+ .. _`NIST SP800-38A` : http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
85
+
86
+ :undocumented: __init__
87
+ """
88
+
89
+ def __init__(self, block_cipher, initial_counter_block,
90
+ prefix_len, counter_len, little_endian):
91
+ """Create a new block cipher, configured in CTR mode.
92
+
93
+ :Parameters:
94
+ block_cipher : C pointer
95
+ A smart pointer to the low-level block cipher instance.
96
+
97
+ initial_counter_block : bytes/bytearray/memoryview
98
+ The initial plaintext to use to generate the key stream.
99
+
100
+ It is as large as the cipher block, and it embeds
101
+ the initial value of the counter.
102
+
103
+ This value must not be reused.
104
+ It shall contain a nonce or a random component.
105
+ Reusing the *initial counter block* for encryptions
106
+ performed with the same key compromises confidentiality.
107
+
108
+ prefix_len : integer
109
+ The amount of bytes at the beginning of the counter block
110
+ that never change.
111
+
112
+ counter_len : integer
113
+ The length in bytes of the counter embedded in the counter
114
+ block.
115
+
116
+ little_endian : boolean
117
+ True if the counter in the counter block is an integer encoded
118
+ in little endian mode. If False, it is big endian.
119
+ """
120
+
121
+ if len(initial_counter_block) == prefix_len + counter_len:
122
+ self.nonce = _copy_bytes(None, prefix_len, initial_counter_block)
123
+ """Nonce; not available if there is a fixed suffix"""
124
+
125
+ self._state = VoidPointer()
126
+ result = raw_ctr_lib.CTR_start_operation(block_cipher.get(),
127
+ c_uint8_ptr(initial_counter_block),
128
+ c_size_t(len(initial_counter_block)),
129
+ c_size_t(prefix_len),
130
+ counter_len,
131
+ little_endian,
132
+ self._state.address_of())
133
+ if result:
134
+ raise ValueError("Error %X while instantiating the CTR mode"
135
+ % result)
136
+
137
+ # Ensure that object disposal of this Python object will (eventually)
138
+ # free the memory allocated by the raw library for the cipher mode
139
+ self._state = SmartPointer(self._state.get(),
140
+ raw_ctr_lib.CTR_stop_operation)
141
+
142
+ # Memory allocated for the underlying block cipher is now owed
143
+ # by the cipher mode
144
+ block_cipher.release()
145
+
146
+ self.block_size = len(initial_counter_block)
147
+ """The block size of the underlying cipher, in bytes."""
148
+
149
+ self._next = ["encrypt", "decrypt"]
150
+
151
+ def encrypt(self, plaintext, output=None):
152
+ """Encrypt data with the key and the parameters set at initialization.
153
+
154
+ A cipher object is stateful: once you have encrypted a message
155
+ you cannot encrypt (or decrypt) another message using the same
156
+ object.
157
+
158
+ The data to encrypt can be broken up in two or
159
+ more pieces and `encrypt` can be called multiple times.
160
+
161
+ That is, the statement:
162
+
163
+ >>> c.encrypt(a) + c.encrypt(b)
164
+
165
+ is equivalent to:
166
+
167
+ >>> c.encrypt(a+b)
168
+
169
+ This function does not add any padding to the plaintext.
170
+
171
+ :Parameters:
172
+ plaintext : bytes/bytearray/memoryview
173
+ The piece of data to encrypt.
174
+ It can be of any length.
175
+ :Keywords:
176
+ output : bytearray/memoryview
177
+ The location where the ciphertext must be written to.
178
+ If ``None``, the ciphertext is returned.
179
+ :Return:
180
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
181
+ Otherwise, ``None``.
182
+ """
183
+
184
+ if "encrypt" not in self._next:
185
+ raise TypeError("encrypt() cannot be called after decrypt()")
186
+ self._next = ["encrypt"]
187
+
188
+ if output is None:
189
+ ciphertext = create_string_buffer(len(plaintext))
190
+ else:
191
+ ciphertext = output
192
+
193
+ if not is_writeable_buffer(output):
194
+ raise TypeError("output must be a bytearray or a writeable memoryview")
195
+
196
+ if len(plaintext) != len(output):
197
+ raise ValueError("output must have the same length as the input"
198
+ " (%d bytes)" % len(plaintext))
199
+
200
+ result = raw_ctr_lib.CTR_encrypt(self._state.get(),
201
+ c_uint8_ptr(plaintext),
202
+ c_uint8_ptr(ciphertext),
203
+ c_size_t(len(plaintext)))
204
+ if result:
205
+ if result == 0x60002:
206
+ raise OverflowError("The counter has wrapped around in"
207
+ " CTR mode")
208
+ raise ValueError("Error %X while encrypting in CTR mode" % result)
209
+
210
+ if output is None:
211
+ return get_raw_buffer(ciphertext)
212
+ else:
213
+ return None
214
+
215
+ def decrypt(self, ciphertext, output=None):
216
+ """Decrypt data with the key and the parameters set at initialization.
217
+
218
+ A cipher object is stateful: once you have decrypted a message
219
+ you cannot decrypt (or encrypt) another message with the same
220
+ object.
221
+
222
+ The data to decrypt can be broken up in two or
223
+ more pieces and `decrypt` can be called multiple times.
224
+
225
+ That is, the statement:
226
+
227
+ >>> c.decrypt(a) + c.decrypt(b)
228
+
229
+ is equivalent to:
230
+
231
+ >>> c.decrypt(a+b)
232
+
233
+ This function does not remove any padding from the plaintext.
234
+
235
+ :Parameters:
236
+ ciphertext : bytes/bytearray/memoryview
237
+ The piece of data to decrypt.
238
+ It can be of any length.
239
+ :Keywords:
240
+ output : bytearray/memoryview
241
+ The location where the plaintext must be written to.
242
+ If ``None``, the plaintext is returned.
243
+ :Return:
244
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
245
+ Otherwise, ``None``.
246
+ """
247
+
248
+ if "decrypt" not in self._next:
249
+ raise TypeError("decrypt() cannot be called after encrypt()")
250
+ self._next = ["decrypt"]
251
+
252
+ if output is None:
253
+ plaintext = create_string_buffer(len(ciphertext))
254
+ else:
255
+ plaintext = output
256
+
257
+ if not is_writeable_buffer(output):
258
+ raise TypeError("output must be a bytearray or a writeable memoryview")
259
+
260
+ if len(ciphertext) != len(output):
261
+ raise ValueError("output must have the same length as the input"
262
+ " (%d bytes)" % len(plaintext))
263
+
264
+ result = raw_ctr_lib.CTR_decrypt(self._state.get(),
265
+ c_uint8_ptr(ciphertext),
266
+ c_uint8_ptr(plaintext),
267
+ c_size_t(len(ciphertext)))
268
+ if result:
269
+ if result == 0x60002:
270
+ raise OverflowError("The counter has wrapped around in"
271
+ " CTR mode")
272
+ raise ValueError("Error %X while decrypting in CTR mode" % result)
273
+
274
+ if output is None:
275
+ return get_raw_buffer(plaintext)
276
+ else:
277
+ return None
278
+
279
+
280
+ def _create_ctr_cipher(factory, **kwargs):
281
+ """Instantiate a cipher object that performs CTR encryption/decryption.
282
+
283
+ :Parameters:
284
+ factory : module
285
+ The underlying block cipher, a module from ``Cryptodome.Cipher``.
286
+
287
+ :Keywords:
288
+ nonce : bytes/bytearray/memoryview
289
+ The fixed part at the beginning of the counter block - the rest is
290
+ the counter number that gets increased when processing the next block.
291
+ The nonce must be such that no two messages are encrypted under the
292
+ same key and the same nonce.
293
+
294
+ The nonce must be shorter than the block size (it can have
295
+ zero length; the counter is then as long as the block).
296
+
297
+ If this parameter is not present, a random nonce will be created with
298
+ length equal to half the block size. No random nonce shorter than
299
+ 64 bits will be created though - you must really think through all
300
+ security consequences of using such a short block size.
301
+
302
+ initial_value : posive integer or bytes/bytearray/memoryview
303
+ The initial value for the counter. If not present, the cipher will
304
+ start counting from 0. The value is incremented by one for each block.
305
+ The counter number is encoded in big endian mode.
306
+
307
+ counter : object
308
+ Instance of ``Cryptodome.Util.Counter``, which allows full customization
309
+ of the counter block. This parameter is incompatible to both ``nonce``
310
+ and ``initial_value``.
311
+
312
+ Any other keyword will be passed to the underlying block cipher.
313
+ See the relevant documentation for details (at least ``key`` will need
314
+ to be present).
315
+ """
316
+
317
+ cipher_state = factory._create_base_cipher(kwargs)
318
+
319
+ counter = kwargs.pop("counter", None)
320
+ nonce = kwargs.pop("nonce", None)
321
+ initial_value = kwargs.pop("initial_value", None)
322
+ if kwargs:
323
+ raise TypeError("Invalid parameters for CTR mode: %s" % str(kwargs))
324
+
325
+ if counter is not None and (nonce, initial_value) != (None, None):
326
+ raise TypeError("'counter' and 'nonce'/'initial_value'"
327
+ " are mutually exclusive")
328
+
329
+ if counter is None:
330
+ # Cryptodome.Util.Counter is not used
331
+ if nonce is None:
332
+ if factory.block_size < 16:
333
+ raise TypeError("Impossible to create a safe nonce for short"
334
+ " block sizes")
335
+ nonce = get_random_bytes(factory.block_size // 2)
336
+ else:
337
+ if len(nonce) >= factory.block_size:
338
+ raise ValueError("Nonce is too long")
339
+
340
+ # What is not nonce is counter
341
+ counter_len = factory.block_size - len(nonce)
342
+
343
+ if initial_value is None:
344
+ initial_value = 0
345
+
346
+ if is_native_int(initial_value):
347
+ if (1 << (counter_len * 8)) - 1 < initial_value:
348
+ raise ValueError("Initial counter value is too large")
349
+ initial_counter_block = nonce + long_to_bytes(initial_value, counter_len)
350
+ else:
351
+ if len(initial_value) != counter_len:
352
+ raise ValueError("Incorrect length for counter byte string (%d bytes, expected %d)" %
353
+ (len(initial_value), counter_len))
354
+ initial_counter_block = nonce + initial_value
355
+
356
+ return CtrMode(cipher_state,
357
+ initial_counter_block,
358
+ len(nonce), # prefix
359
+ counter_len,
360
+ False) # little_endian
361
+
362
+ # Cryptodome.Util.Counter is used
363
+
364
+ # 'counter' used to be a callable object, but now it is
365
+ # just a dictionary for backward compatibility.
366
+ _counter = dict(counter)
367
+ try:
368
+ counter_len = _counter.pop("counter_len")
369
+ prefix = _counter.pop("prefix")
370
+ suffix = _counter.pop("suffix")
371
+ initial_value = _counter.pop("initial_value")
372
+ little_endian = _counter.pop("little_endian")
373
+ except KeyError:
374
+ raise TypeError("Incorrect counter object"
375
+ " (use Cryptodome.Util.Counter.new)")
376
+
377
+ # Compute initial counter block
378
+ words = []
379
+ while initial_value > 0:
380
+ words.append(struct.pack('B', initial_value & 255))
381
+ initial_value >>= 8
382
+ words += [b'\x00'] * max(0, counter_len - len(words))
383
+ if not little_endian:
384
+ words.reverse()
385
+ initial_counter_block = prefix + b"".join(words) + suffix
386
+
387
+ if len(initial_counter_block) != factory.block_size:
388
+ raise ValueError("Size of the counter block (%d bytes) must match"
389
+ " block size (%d)" % (len(initial_counter_block),
390
+ factory.block_size))
391
+
392
+ return CtrMode(cipher_state, initial_counter_block,
393
+ len(prefix), counter_len, little_endian)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ctr.pyi ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, overload
2
+
3
+ from Cryptodome.Util._raw_api import SmartPointer
4
+
5
+ Buffer = Union[bytes, bytearray, memoryview]
6
+
7
+ __all__ = ['CtrMode']
8
+
9
+ class CtrMode(object):
10
+ block_size: int
11
+ nonce: bytes
12
+
13
+ def __init__(self,
14
+ block_cipher: SmartPointer,
15
+ initial_counter_block: Buffer,
16
+ prefix_len: int,
17
+ counter_len: int,
18
+ little_endian: bool) -> None: ...
19
+ @overload
20
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
21
+ @overload
22
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
23
+ @overload
24
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
25
+ @overload
26
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
27
+
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_eax.py ADDED
@@ -0,0 +1,408 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2014, Legrandin <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ """
32
+ EAX mode.
33
+ """
34
+
35
+ __all__ = ['EaxMode']
36
+
37
+ import struct
38
+ from binascii import unhexlify
39
+
40
+ from Cryptodome.Util.py3compat import byte_string, bord, _copy_bytes
41
+
42
+ from Cryptodome.Util._raw_api import is_buffer
43
+
44
+ from Cryptodome.Util.strxor import strxor
45
+ from Cryptodome.Util.number import long_to_bytes, bytes_to_long
46
+
47
+ from Cryptodome.Hash import CMAC, BLAKE2s
48
+ from Cryptodome.Random import get_random_bytes
49
+
50
+
51
+ class EaxMode(object):
52
+ """*EAX* mode.
53
+
54
+ This is an Authenticated Encryption with Associated Data
55
+ (`AEAD`_) mode. It provides both confidentiality and authenticity.
56
+
57
+ The header of the message may be left in the clear, if needed,
58
+ and it will still be subject to authentication.
59
+
60
+ The decryption step tells the receiver if the message comes
61
+ from a source that really knowns the secret key.
62
+ Additionally, decryption detects if any part of the message -
63
+ including the header - has been modified or corrupted.
64
+
65
+ This mode requires a *nonce*.
66
+
67
+ This mode is only available for ciphers that operate on 64 or
68
+ 128 bits blocks.
69
+
70
+ There are no official standards defining EAX.
71
+ The implementation is based on `a proposal`__ that
72
+ was presented to NIST.
73
+
74
+ .. _AEAD: http://blog.cryptographyengineering.com/2012/05/how-to-choose-authenticated-encryption.html
75
+ .. __: http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/eax/eax-spec.pdf
76
+
77
+ :undocumented: __init__
78
+ """
79
+
80
+ def __init__(self, factory, key, nonce, mac_len, cipher_params):
81
+ """EAX cipher mode"""
82
+
83
+ self.block_size = factory.block_size
84
+ """The block size of the underlying cipher, in bytes."""
85
+
86
+ self.nonce = _copy_bytes(None, None, nonce)
87
+ """The nonce originally used to create the object."""
88
+
89
+ self._mac_len = mac_len
90
+ self._mac_tag = None # Cache for MAC tag
91
+
92
+ # Allowed transitions after initialization
93
+ self._next = ["update", "encrypt", "decrypt",
94
+ "digest", "verify"]
95
+
96
+ # MAC tag length
97
+ if not (2 <= self._mac_len <= self.block_size):
98
+ raise ValueError("'mac_len' must be at least 2 and not larger than %d"
99
+ % self.block_size)
100
+
101
+ # Nonce cannot be empty and must be a byte string
102
+ if len(self.nonce) == 0:
103
+ raise ValueError("Nonce cannot be empty in EAX mode")
104
+ if not is_buffer(nonce):
105
+ raise TypeError("nonce must be bytes, bytearray or memoryview")
106
+
107
+ self._omac = [
108
+ CMAC.new(key,
109
+ b'\x00' * (self.block_size - 1) + struct.pack('B', i),
110
+ ciphermod=factory,
111
+ cipher_params=cipher_params)
112
+ for i in range(0, 3)
113
+ ]
114
+
115
+ # Compute MAC of nonce
116
+ self._omac[0].update(self.nonce)
117
+ self._signer = self._omac[1]
118
+
119
+ # MAC of the nonce is also the initial counter for CTR encryption
120
+ counter_int = bytes_to_long(self._omac[0].digest())
121
+ self._cipher = factory.new(key,
122
+ factory.MODE_CTR,
123
+ initial_value=counter_int,
124
+ nonce=b"",
125
+ **cipher_params)
126
+
127
+ def update(self, assoc_data):
128
+ """Protect associated data
129
+
130
+ If there is any associated data, the caller has to invoke
131
+ this function one or more times, before using
132
+ ``decrypt`` or ``encrypt``.
133
+
134
+ By *associated data* it is meant any data (e.g. packet headers) that
135
+ will not be encrypted and will be transmitted in the clear.
136
+ However, the receiver is still able to detect any modification to it.
137
+
138
+ If there is no associated data, this method must not be called.
139
+
140
+ The caller may split associated data in segments of any size, and
141
+ invoke this method multiple times, each time with the next segment.
142
+
143
+ :Parameters:
144
+ assoc_data : bytes/bytearray/memoryview
145
+ A piece of associated data. There are no restrictions on its size.
146
+ """
147
+
148
+ if "update" not in self._next:
149
+ raise TypeError("update() can only be called"
150
+ " immediately after initialization")
151
+
152
+ self._next = ["update", "encrypt", "decrypt",
153
+ "digest", "verify"]
154
+
155
+ self._signer.update(assoc_data)
156
+ return self
157
+
158
+ def encrypt(self, plaintext, output=None):
159
+ """Encrypt data with the key and the parameters set at initialization.
160
+
161
+ A cipher object is stateful: once you have encrypted a message
162
+ you cannot encrypt (or decrypt) another message using the same
163
+ object.
164
+
165
+ The data to encrypt can be broken up in two or
166
+ more pieces and `encrypt` can be called multiple times.
167
+
168
+ That is, the statement:
169
+
170
+ >>> c.encrypt(a) + c.encrypt(b)
171
+
172
+ is equivalent to:
173
+
174
+ >>> c.encrypt(a+b)
175
+
176
+ This function does not add any padding to the plaintext.
177
+
178
+ :Parameters:
179
+ plaintext : bytes/bytearray/memoryview
180
+ The piece of data to encrypt.
181
+ It can be of any length.
182
+ :Keywords:
183
+ output : bytearray/memoryview
184
+ The location where the ciphertext must be written to.
185
+ If ``None``, the ciphertext is returned.
186
+ :Return:
187
+ If ``output`` is ``None``, the ciphertext as ``bytes``.
188
+ Otherwise, ``None``.
189
+ """
190
+
191
+ if "encrypt" not in self._next:
192
+ raise TypeError("encrypt() can only be called after"
193
+ " initialization or an update()")
194
+ self._next = ["encrypt", "digest"]
195
+ ct = self._cipher.encrypt(plaintext, output=output)
196
+ if output is None:
197
+ self._omac[2].update(ct)
198
+ else:
199
+ self._omac[2].update(output)
200
+ return ct
201
+
202
+ def decrypt(self, ciphertext, output=None):
203
+ """Decrypt data with the key and the parameters set at initialization.
204
+
205
+ A cipher object is stateful: once you have decrypted a message
206
+ you cannot decrypt (or encrypt) another message with the same
207
+ object.
208
+
209
+ The data to decrypt can be broken up in two or
210
+ more pieces and `decrypt` can be called multiple times.
211
+
212
+ That is, the statement:
213
+
214
+ >>> c.decrypt(a) + c.decrypt(b)
215
+
216
+ is equivalent to:
217
+
218
+ >>> c.decrypt(a+b)
219
+
220
+ This function does not remove any padding from the plaintext.
221
+
222
+ :Parameters:
223
+ ciphertext : bytes/bytearray/memoryview
224
+ The piece of data to decrypt.
225
+ It can be of any length.
226
+ :Keywords:
227
+ output : bytearray/memoryview
228
+ The location where the plaintext must be written to.
229
+ If ``None``, the plaintext is returned.
230
+ :Return:
231
+ If ``output`` is ``None``, the plaintext as ``bytes``.
232
+ Otherwise, ``None``.
233
+ """
234
+
235
+ if "decrypt" not in self._next:
236
+ raise TypeError("decrypt() can only be called"
237
+ " after initialization or an update()")
238
+ self._next = ["decrypt", "verify"]
239
+ self._omac[2].update(ciphertext)
240
+ return self._cipher.decrypt(ciphertext, output=output)
241
+
242
+ def digest(self):
243
+ """Compute the *binary* MAC tag.
244
+
245
+ The caller invokes this function at the very end.
246
+
247
+ This method returns the MAC that shall be sent to the receiver,
248
+ together with the ciphertext.
249
+
250
+ :Return: the MAC, as a byte string.
251
+ """
252
+
253
+ if "digest" not in self._next:
254
+ raise TypeError("digest() cannot be called when decrypting"
255
+ " or validating a message")
256
+ self._next = ["digest"]
257
+
258
+ if not self._mac_tag:
259
+ tag = b'\x00' * self.block_size
260
+ for i in range(3):
261
+ tag = strxor(tag, self._omac[i].digest())
262
+ self._mac_tag = tag[:self._mac_len]
263
+
264
+ return self._mac_tag
265
+
266
+ def hexdigest(self):
267
+ """Compute the *printable* MAC tag.
268
+
269
+ This method is like `digest`.
270
+
271
+ :Return: the MAC, as a hexadecimal string.
272
+ """
273
+ return "".join(["%02x" % bord(x) for x in self.digest()])
274
+
275
+ def verify(self, received_mac_tag):
276
+ """Validate the *binary* MAC tag.
277
+
278
+ The caller invokes this function at the very end.
279
+
280
+ This method checks if the decrypted message is indeed valid
281
+ (that is, if the key is correct) and it has not been
282
+ tampered with while in transit.
283
+
284
+ :Parameters:
285
+ received_mac_tag : bytes/bytearray/memoryview
286
+ This is the *binary* MAC, as received from the sender.
287
+ :Raises MacMismatchError:
288
+ if the MAC does not match. The message has been tampered with
289
+ or the key is incorrect.
290
+ """
291
+
292
+ if "verify" not in self._next:
293
+ raise TypeError("verify() cannot be called"
294
+ " when encrypting a message")
295
+ self._next = ["verify"]
296
+
297
+ if not self._mac_tag:
298
+ tag = b'\x00' * self.block_size
299
+ for i in range(3):
300
+ tag = strxor(tag, self._omac[i].digest())
301
+ self._mac_tag = tag[:self._mac_len]
302
+
303
+ secret = get_random_bytes(16)
304
+
305
+ mac1 = BLAKE2s.new(digest_bits=160, key=secret, data=self._mac_tag)
306
+ mac2 = BLAKE2s.new(digest_bits=160, key=secret, data=received_mac_tag)
307
+
308
+ if mac1.digest() != mac2.digest():
309
+ raise ValueError("MAC check failed")
310
+
311
+ def hexverify(self, hex_mac_tag):
312
+ """Validate the *printable* MAC tag.
313
+
314
+ This method is like `verify`.
315
+
316
+ :Parameters:
317
+ hex_mac_tag : string
318
+ This is the *printable* MAC, as received from the sender.
319
+ :Raises MacMismatchError:
320
+ if the MAC does not match. The message has been tampered with
321
+ or the key is incorrect.
322
+ """
323
+
324
+ self.verify(unhexlify(hex_mac_tag))
325
+
326
+ def encrypt_and_digest(self, plaintext, output=None):
327
+ """Perform encrypt() and digest() in one step.
328
+
329
+ :Parameters:
330
+ plaintext : bytes/bytearray/memoryview
331
+ The piece of data to encrypt.
332
+ :Keywords:
333
+ output : bytearray/memoryview
334
+ The location where the ciphertext must be written to.
335
+ If ``None``, the ciphertext is returned.
336
+ :Return:
337
+ a tuple with two items:
338
+
339
+ - the ciphertext, as ``bytes``
340
+ - the MAC tag, as ``bytes``
341
+
342
+ The first item becomes ``None`` when the ``output`` parameter
343
+ specified a location for the result.
344
+ """
345
+
346
+ return self.encrypt(plaintext, output=output), self.digest()
347
+
348
+ def decrypt_and_verify(self, ciphertext, received_mac_tag, output=None):
349
+ """Perform decrypt() and verify() in one step.
350
+
351
+ :Parameters:
352
+ ciphertext : bytes/bytearray/memoryview
353
+ The piece of data to decrypt.
354
+ received_mac_tag : bytes/bytearray/memoryview
355
+ This is the *binary* MAC, as received from the sender.
356
+ :Keywords:
357
+ output : bytearray/memoryview
358
+ The location where the plaintext must be written to.
359
+ If ``None``, the plaintext is returned.
360
+ :Return: the plaintext as ``bytes`` or ``None`` when the ``output``
361
+ parameter specified a location for the result.
362
+ :Raises MacMismatchError:
363
+ if the MAC does not match. The message has been tampered with
364
+ or the key is incorrect.
365
+ """
366
+
367
+ pt = self.decrypt(ciphertext, output=output)
368
+ self.verify(received_mac_tag)
369
+ return pt
370
+
371
+
372
+ def _create_eax_cipher(factory, **kwargs):
373
+ """Create a new block cipher, configured in EAX mode.
374
+
375
+ :Parameters:
376
+ factory : module
377
+ A symmetric cipher module from `Cryptodome.Cipher` (like
378
+ `Cryptodome.Cipher.AES`).
379
+
380
+ :Keywords:
381
+ key : bytes/bytearray/memoryview
382
+ The secret key to use in the symmetric cipher.
383
+
384
+ nonce : bytes/bytearray/memoryview
385
+ A value that must never be reused for any other encryption.
386
+ There are no restrictions on its length, but it is recommended to use
387
+ at least 16 bytes.
388
+
389
+ The nonce shall never repeat for two different messages encrypted with
390
+ the same key, but it does not need to be random.
391
+
392
+ If not specified, a 16 byte long random string is used.
393
+
394
+ mac_len : integer
395
+ Length of the MAC, in bytes. It must be no larger than the cipher
396
+ block bytes (which is the default).
397
+ """
398
+
399
+ try:
400
+ key = kwargs.pop("key")
401
+ nonce = kwargs.pop("nonce", None)
402
+ if nonce is None:
403
+ nonce = get_random_bytes(16)
404
+ mac_len = kwargs.pop("mac_len", factory.block_size)
405
+ except KeyError as e:
406
+ raise TypeError("Missing parameter: " + str(e))
407
+
408
+ return EaxMode(factory, key, nonce, mac_len, kwargs)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_eax.pyi ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from types import ModuleType
2
+ from typing import Any, Union, Tuple, Dict, overload, Optional
3
+
4
+ Buffer = Union[bytes, bytearray, memoryview]
5
+
6
+ __all__ = ['EaxMode']
7
+
8
+ class EaxMode(object):
9
+ block_size: int
10
+ nonce: bytes
11
+
12
+ def __init__(self,
13
+ factory: ModuleType,
14
+ key: Buffer,
15
+ nonce: Buffer,
16
+ mac_len: int,
17
+ cipher_params: Dict) -> None: ...
18
+
19
+ def update(self, assoc_data: Buffer) -> EaxMode: ...
20
+
21
+ @overload
22
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
23
+ @overload
24
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
25
+ @overload
26
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
27
+ @overload
28
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
29
+
30
+ def digest(self) -> bytes: ...
31
+ def hexdigest(self) -> str: ...
32
+ def verify(self, received_mac_tag: Buffer) -> None: ...
33
+ def hexverify(self, hex_mac_tag: str) -> None: ...
34
+
35
+ @overload
36
+ def encrypt_and_digest(self,
37
+ plaintext: Buffer) -> Tuple[bytes, bytes]: ...
38
+ @overload
39
+ def encrypt_and_digest(self,
40
+ plaintext: Buffer,
41
+ output: Buffer) -> Tuple[None, bytes]: ...
42
+ def decrypt_and_verify(self,
43
+ ciphertext: Buffer,
44
+ received_mac_tag: Buffer,
45
+ output: Optional[Union[bytearray, memoryview]] = ...) -> bytes: ...
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ecb.py ADDED
@@ -0,0 +1,220 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/mode_ecb.py : ECB mode
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ """
24
+ Electronic Code Book (ECB) mode.
25
+ """
26
+
27
+ __all__ = [ 'EcbMode' ]
28
+
29
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib,
30
+ VoidPointer, create_string_buffer,
31
+ get_raw_buffer, SmartPointer,
32
+ c_size_t, c_uint8_ptr,
33
+ is_writeable_buffer)
34
+
35
+ raw_ecb_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_ecb", """
36
+ int ECB_start_operation(void *cipher,
37
+ void **pResult);
38
+ int ECB_encrypt(void *ecbState,
39
+ const uint8_t *in,
40
+ uint8_t *out,
41
+ size_t data_len);
42
+ int ECB_decrypt(void *ecbState,
43
+ const uint8_t *in,
44
+ uint8_t *out,
45
+ size_t data_len);
46
+ int ECB_stop_operation(void *state);
47
+ """
48
+ )
49
+
50
+
51
+ class EcbMode(object):
52
+ """*Electronic Code Book (ECB)*.
53
+
54
+ This is the simplest encryption mode. Each of the plaintext blocks
55
+ is directly encrypted into a ciphertext block, independently of
56
+ any other block.
57
+
58
+ This mode is dangerous because it exposes frequency of symbols
59
+ in your plaintext. Other modes (e.g. *CBC*) should be used instead.
60
+
61
+ See `NIST SP800-38A`_ , Section 6.1.
62
+
63
+ .. _`NIST SP800-38A` : http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
64
+
65
+ :undocumented: __init__
66
+ """
67
+
68
+ def __init__(self, block_cipher):
69
+ """Create a new block cipher, configured in ECB mode.
70
+
71
+ :Parameters:
72
+ block_cipher : C pointer
73
+ A smart pointer to the low-level block cipher instance.
74
+ """
75
+ self.block_size = block_cipher.block_size
76
+
77
+ self._state = VoidPointer()
78
+ result = raw_ecb_lib.ECB_start_operation(block_cipher.get(),
79
+ self._state.address_of())
80
+ if result:
81
+ raise ValueError("Error %d while instantiating the ECB mode"
82
+ % result)
83
+
84
+ # Ensure that object disposal of this Python object will (eventually)
85
+ # free the memory allocated by the raw library for the cipher
86
+ # mode
87
+ self._state = SmartPointer(self._state.get(),
88
+ raw_ecb_lib.ECB_stop_operation)
89
+
90
+ # Memory allocated for the underlying block cipher is now owned
91
+ # by the cipher mode
92
+ block_cipher.release()
93
+
94
+ def encrypt(self, plaintext, output=None):
95
+ """Encrypt data with the key set at initialization.
96
+
97
+ The data to encrypt can be broken up in two or
98
+ more pieces and `encrypt` can be called multiple times.
99
+
100
+ That is, the statement:
101
+
102
+ >>> c.encrypt(a) + c.encrypt(b)
103
+
104
+ is equivalent to:
105
+
106
+ >>> c.encrypt(a+b)
107
+
108
+ This function does not add any padding to the plaintext.
109
+
110
+ :Parameters:
111
+ plaintext : bytes/bytearray/memoryview
112
+ The piece of data to encrypt.
113
+ The length must be multiple of the cipher block length.
114
+ :Keywords:
115
+ output : bytearray/memoryview
116
+ The location where the ciphertext must be written to.
117
+ If ``None``, the ciphertext is returned.
118
+ :Return:
119
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
120
+ Otherwise, ``None``.
121
+ """
122
+
123
+ if output is None:
124
+ ciphertext = create_string_buffer(len(plaintext))
125
+ else:
126
+ ciphertext = output
127
+
128
+ if not is_writeable_buffer(output):
129
+ raise TypeError("output must be a bytearray or a writeable memoryview")
130
+
131
+ if len(plaintext) != len(output):
132
+ raise ValueError("output must have the same length as the input"
133
+ " (%d bytes)" % len(plaintext))
134
+
135
+ result = raw_ecb_lib.ECB_encrypt(self._state.get(),
136
+ c_uint8_ptr(plaintext),
137
+ c_uint8_ptr(ciphertext),
138
+ c_size_t(len(plaintext)))
139
+ if result:
140
+ if result == 3:
141
+ raise ValueError("Data must be aligned to block boundary in ECB mode")
142
+ raise ValueError("Error %d while encrypting in ECB mode" % result)
143
+
144
+ if output is None:
145
+ return get_raw_buffer(ciphertext)
146
+ else:
147
+ return None
148
+
149
+ def decrypt(self, ciphertext, output=None):
150
+ """Decrypt data with the key set at initialization.
151
+
152
+ The data to decrypt can be broken up in two or
153
+ more pieces and `decrypt` can be called multiple times.
154
+
155
+ That is, the statement:
156
+
157
+ >>> c.decrypt(a) + c.decrypt(b)
158
+
159
+ is equivalent to:
160
+
161
+ >>> c.decrypt(a+b)
162
+
163
+ This function does not remove any padding from the plaintext.
164
+
165
+ :Parameters:
166
+ ciphertext : bytes/bytearray/memoryview
167
+ The piece of data to decrypt.
168
+ The length must be multiple of the cipher block length.
169
+ :Keywords:
170
+ output : bytearray/memoryview
171
+ The location where the plaintext must be written to.
172
+ If ``None``, the plaintext is returned.
173
+ :Return:
174
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
175
+ Otherwise, ``None``.
176
+ """
177
+
178
+ if output is None:
179
+ plaintext = create_string_buffer(len(ciphertext))
180
+ else:
181
+ plaintext = output
182
+
183
+ if not is_writeable_buffer(output):
184
+ raise TypeError("output must be a bytearray or a writeable memoryview")
185
+
186
+ if len(ciphertext) != len(output):
187
+ raise ValueError("output must have the same length as the input"
188
+ " (%d bytes)" % len(plaintext))
189
+
190
+ result = raw_ecb_lib.ECB_decrypt(self._state.get(),
191
+ c_uint8_ptr(ciphertext),
192
+ c_uint8_ptr(plaintext),
193
+ c_size_t(len(ciphertext)))
194
+ if result:
195
+ if result == 3:
196
+ raise ValueError("Data must be aligned to block boundary in ECB mode")
197
+ raise ValueError("Error %d while decrypting in ECB mode" % result)
198
+
199
+ if output is None:
200
+ return get_raw_buffer(plaintext)
201
+ else:
202
+ return None
203
+
204
+
205
+ def _create_ecb_cipher(factory, **kwargs):
206
+ """Instantiate a cipher object that performs ECB encryption/decryption.
207
+
208
+ :Parameters:
209
+ factory : module
210
+ The underlying block cipher, a module from ``Cryptodome.Cipher``.
211
+
212
+ All keywords are passed to the underlying block cipher.
213
+ See the relevant documentation for details (at least ``key`` will need
214
+ to be present"""
215
+
216
+ cipher_state = factory._create_base_cipher(kwargs)
217
+ cipher_state.block_size = factory.block_size
218
+ if kwargs:
219
+ raise TypeError("Unknown parameters for ECB: %s" % str(kwargs))
220
+ return EcbMode(cipher_state)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ecb.pyi ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Union, overload
2
+
3
+ from Cryptodome.Util._raw_api import SmartPointer
4
+
5
+ Buffer = Union[bytes, bytearray, memoryview]
6
+
7
+ __all__ = [ 'EcbMode' ]
8
+
9
+ class EcbMode(object):
10
+ def __init__(self, block_cipher: SmartPointer) -> None: ...
11
+ @overload
12
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
13
+ @overload
14
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
15
+ @overload
16
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
17
+ @overload
18
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
19
+
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_gcm.py ADDED
@@ -0,0 +1,620 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2014, Legrandin <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ """
32
+ Galois/Counter Mode (GCM).
33
+ """
34
+
35
+ __all__ = ['GcmMode']
36
+
37
+ from binascii import unhexlify
38
+
39
+ from Cryptodome.Util.py3compat import bord, _copy_bytes
40
+
41
+ from Cryptodome.Util._raw_api import is_buffer
42
+
43
+ from Cryptodome.Util.number import long_to_bytes, bytes_to_long
44
+ from Cryptodome.Hash import BLAKE2s
45
+ from Cryptodome.Random import get_random_bytes
46
+
47
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib, VoidPointer,
48
+ create_string_buffer, get_raw_buffer,
49
+ SmartPointer, c_size_t, c_uint8_ptr)
50
+
51
+ from Cryptodome.Util import _cpu_features
52
+
53
+
54
+ # C API by module implementing GHASH
55
+ _ghash_api_template = """
56
+ int ghash_%imp%(uint8_t y_out[16],
57
+ const uint8_t block_data[],
58
+ size_t len,
59
+ const uint8_t y_in[16],
60
+ const void *exp_key);
61
+ int ghash_expand_%imp%(const uint8_t h[16],
62
+ void **ghash_tables);
63
+ int ghash_destroy_%imp%(void *ghash_tables);
64
+ """
65
+
66
+ def _build_impl(lib, postfix):
67
+ from collections import namedtuple
68
+
69
+ funcs = ( "ghash", "ghash_expand", "ghash_destroy" )
70
+ GHASH_Imp = namedtuple('_GHash_Imp', funcs)
71
+ try:
72
+ imp_funcs = [ getattr(lib, x + "_" + postfix) for x in funcs ]
73
+ except AttributeError: # Make sphinx stop complaining with its mocklib
74
+ imp_funcs = [ None ] * 3
75
+ params = dict(zip(funcs, imp_funcs))
76
+ return GHASH_Imp(**params)
77
+
78
+
79
+ def _get_ghash_portable():
80
+ api = _ghash_api_template.replace("%imp%", "portable")
81
+ lib = load_pycryptodome_raw_lib("Cryptodome.Hash._ghash_portable", api)
82
+ result = _build_impl(lib, "portable")
83
+ return result
84
+ _ghash_portable = _get_ghash_portable()
85
+
86
+
87
+ def _get_ghash_clmul():
88
+ """Return None if CLMUL implementation is not available"""
89
+
90
+ if not _cpu_features.have_clmul():
91
+ return None
92
+ try:
93
+ api = _ghash_api_template.replace("%imp%", "clmul")
94
+ lib = load_pycryptodome_raw_lib("Cryptodome.Hash._ghash_clmul", api)
95
+ result = _build_impl(lib, "clmul")
96
+ except OSError:
97
+ result = None
98
+ return result
99
+ _ghash_clmul = _get_ghash_clmul()
100
+
101
+
102
+ class _GHASH(object):
103
+ """GHASH function defined in NIST SP 800-38D, Algorithm 2.
104
+
105
+ If X_1, X_2, .. X_m are the blocks of input data, the function
106
+ computes:
107
+
108
+ X_1*H^{m} + X_2*H^{m-1} + ... + X_m*H
109
+
110
+ in the Galois field GF(2^256) using the reducing polynomial
111
+ (x^128 + x^7 + x^2 + x + 1).
112
+ """
113
+
114
+ def __init__(self, subkey, ghash_c):
115
+ assert len(subkey) == 16
116
+
117
+ self.ghash_c = ghash_c
118
+
119
+ self._exp_key = VoidPointer()
120
+ result = ghash_c.ghash_expand(c_uint8_ptr(subkey),
121
+ self._exp_key.address_of())
122
+ if result:
123
+ raise ValueError("Error %d while expanding the GHASH key" % result)
124
+
125
+ self._exp_key = SmartPointer(self._exp_key.get(),
126
+ ghash_c.ghash_destroy)
127
+
128
+ # create_string_buffer always returns a string of zeroes
129
+ self._last_y = create_string_buffer(16)
130
+
131
+ def update(self, block_data):
132
+ assert len(block_data) % 16 == 0
133
+
134
+ result = self.ghash_c.ghash(self._last_y,
135
+ c_uint8_ptr(block_data),
136
+ c_size_t(len(block_data)),
137
+ self._last_y,
138
+ self._exp_key.get())
139
+ if result:
140
+ raise ValueError("Error %d while updating GHASH" % result)
141
+
142
+ return self
143
+
144
+ def digest(self):
145
+ return get_raw_buffer(self._last_y)
146
+
147
+
148
+ def enum(**enums):
149
+ return type('Enum', (), enums)
150
+
151
+
152
+ MacStatus = enum(PROCESSING_AUTH_DATA=1, PROCESSING_CIPHERTEXT=2)
153
+
154
+
155
+ class GcmMode(object):
156
+ """Galois Counter Mode (GCM).
157
+
158
+ This is an Authenticated Encryption with Associated Data (`AEAD`_) mode.
159
+ It provides both confidentiality and authenticity.
160
+
161
+ The header of the message may be left in the clear, if needed, and it will
162
+ still be subject to authentication. The decryption step tells the receiver
163
+ if the message comes from a source that really knowns the secret key.
164
+ Additionally, decryption detects if any part of the message - including the
165
+ header - has been modified or corrupted.
166
+
167
+ This mode requires a *nonce*.
168
+
169
+ This mode is only available for ciphers that operate on 128 bits blocks
170
+ (e.g. AES but not TDES).
171
+
172
+ See `NIST SP800-38D`_.
173
+
174
+ .. _`NIST SP800-38D`: http://csrc.nist.gov/publications/nistpubs/800-38D/SP-800-38D.pdf
175
+ .. _AEAD: http://blog.cryptographyengineering.com/2012/05/how-to-choose-authenticated-encryption.html
176
+
177
+ :undocumented: __init__
178
+ """
179
+
180
+ def __init__(self, factory, key, nonce, mac_len, cipher_params, ghash_c):
181
+
182
+ self.block_size = factory.block_size
183
+ if self.block_size != 16:
184
+ raise ValueError("GCM mode is only available for ciphers"
185
+ " that operate on 128 bits blocks")
186
+
187
+ if len(nonce) == 0:
188
+ raise ValueError("Nonce cannot be empty")
189
+
190
+ if not is_buffer(nonce):
191
+ raise TypeError("Nonce must be bytes, bytearray or memoryview")
192
+
193
+ # See NIST SP 800 38D, 5.2.1.1
194
+ if len(nonce) > 2**64 - 1:
195
+ raise ValueError("Nonce exceeds maximum length")
196
+
197
+
198
+ self.nonce = _copy_bytes(None, None, nonce)
199
+ """Nonce"""
200
+
201
+ self._factory = factory
202
+ self._key = _copy_bytes(None, None, key)
203
+ self._tag = None # Cache for MAC tag
204
+
205
+ self._mac_len = mac_len
206
+ if not (4 <= mac_len <= 16):
207
+ raise ValueError("Parameter 'mac_len' must be in the range 4..16")
208
+
209
+ # Allowed transitions after initialization
210
+ self._next = ["update", "encrypt", "decrypt",
211
+ "digest", "verify"]
212
+
213
+ self._no_more_assoc_data = False
214
+
215
+ # Length of associated data
216
+ self._auth_len = 0
217
+
218
+ # Length of the ciphertext or plaintext
219
+ self._msg_len = 0
220
+
221
+ # Step 1 in SP800-38D, Algorithm 4 (encryption) - Compute H
222
+ # See also Algorithm 5 (decryption)
223
+ hash_subkey = factory.new(key,
224
+ self._factory.MODE_ECB,
225
+ **cipher_params
226
+ ).encrypt(b'\x00' * 16)
227
+
228
+ # Step 2 - Compute J0
229
+ if len(self.nonce) == 12:
230
+ j0 = self.nonce + b"\x00\x00\x00\x01"
231
+ else:
232
+ fill = (16 - (len(self.nonce) % 16)) % 16 + 8
233
+ ghash_in = (self.nonce +
234
+ b'\x00' * fill +
235
+ long_to_bytes(8 * len(self.nonce), 8))
236
+ j0 = _GHASH(hash_subkey, ghash_c).update(ghash_in).digest()
237
+
238
+ # Step 3 - Prepare GCTR cipher for encryption/decryption
239
+ nonce_ctr = j0[:12]
240
+ iv_ctr = (bytes_to_long(j0) + 1) & 0xFFFFFFFF
241
+ self._cipher = factory.new(key,
242
+ self._factory.MODE_CTR,
243
+ initial_value=iv_ctr,
244
+ nonce=nonce_ctr,
245
+ **cipher_params)
246
+
247
+ # Step 5 - Bootstrat GHASH
248
+ self._signer = _GHASH(hash_subkey, ghash_c)
249
+
250
+ # Step 6 - Prepare GCTR cipher for GMAC
251
+ self._tag_cipher = factory.new(key,
252
+ self._factory.MODE_CTR,
253
+ initial_value=j0,
254
+ nonce=b"",
255
+ **cipher_params)
256
+
257
+ # Cache for data to authenticate
258
+ self._cache = b""
259
+
260
+ self._status = MacStatus.PROCESSING_AUTH_DATA
261
+
262
+ def update(self, assoc_data):
263
+ """Protect associated data
264
+
265
+ If there is any associated data, the caller has to invoke
266
+ this function one or more times, before using
267
+ ``decrypt`` or ``encrypt``.
268
+
269
+ By *associated data* it is meant any data (e.g. packet headers) that
270
+ will not be encrypted and will be transmitted in the clear.
271
+ However, the receiver is still able to detect any modification to it.
272
+ In GCM, the *associated data* is also called
273
+ *additional authenticated data* (AAD).
274
+
275
+ If there is no associated data, this method must not be called.
276
+
277
+ The caller may split associated data in segments of any size, and
278
+ invoke this method multiple times, each time with the next segment.
279
+
280
+ :Parameters:
281
+ assoc_data : bytes/bytearray/memoryview
282
+ A piece of associated data. There are no restrictions on its size.
283
+ """
284
+
285
+ if "update" not in self._next:
286
+ raise TypeError("update() can only be called"
287
+ " immediately after initialization")
288
+
289
+ self._next = ["update", "encrypt", "decrypt",
290
+ "digest", "verify"]
291
+
292
+ self._update(assoc_data)
293
+ self._auth_len += len(assoc_data)
294
+
295
+ # See NIST SP 800 38D, 5.2.1.1
296
+ if self._auth_len > 2**64 - 1:
297
+ raise ValueError("Additional Authenticated Data exceeds maximum length")
298
+
299
+ return self
300
+
301
+ def _update(self, data):
302
+ assert(len(self._cache) < 16)
303
+
304
+ if len(self._cache) > 0:
305
+ filler = min(16 - len(self._cache), len(data))
306
+ self._cache += _copy_bytes(None, filler, data)
307
+ data = data[filler:]
308
+
309
+ if len(self._cache) < 16:
310
+ return
311
+
312
+ # The cache is exactly one block
313
+ self._signer.update(self._cache)
314
+ self._cache = b""
315
+
316
+ update_len = len(data) // 16 * 16
317
+ self._cache = _copy_bytes(update_len, None, data)
318
+ if update_len > 0:
319
+ self._signer.update(data[:update_len])
320
+
321
+ def _pad_cache_and_update(self):
322
+ assert(len(self._cache) < 16)
323
+
324
+ # The authenticated data A is concatenated to the minimum
325
+ # number of zero bytes (possibly none) such that the
326
+ # - ciphertext C is aligned to the 16 byte boundary.
327
+ # See step 5 in section 7.1
328
+ # - ciphertext C is aligned to the 16 byte boundary.
329
+ # See step 6 in section 7.2
330
+ len_cache = len(self._cache)
331
+ if len_cache > 0:
332
+ self._update(b'\x00' * (16 - len_cache))
333
+
334
+ def encrypt(self, plaintext, output=None):
335
+ """Encrypt data with the key and the parameters set at initialization.
336
+
337
+ A cipher object is stateful: once you have encrypted a message
338
+ you cannot encrypt (or decrypt) another message using the same
339
+ object.
340
+
341
+ The data to encrypt can be broken up in two or
342
+ more pieces and `encrypt` can be called multiple times.
343
+
344
+ That is, the statement:
345
+
346
+ >>> c.encrypt(a) + c.encrypt(b)
347
+
348
+ is equivalent to:
349
+
350
+ >>> c.encrypt(a+b)
351
+
352
+ This function does not add any padding to the plaintext.
353
+
354
+ :Parameters:
355
+ plaintext : bytes/bytearray/memoryview
356
+ The piece of data to encrypt.
357
+ It can be of any length.
358
+ :Keywords:
359
+ output : bytearray/memoryview
360
+ The location where the ciphertext must be written to.
361
+ If ``None``, the ciphertext is returned.
362
+ :Return:
363
+ If ``output`` is ``None``, the ciphertext as ``bytes``.
364
+ Otherwise, ``None``.
365
+ """
366
+
367
+ if "encrypt" not in self._next:
368
+ raise TypeError("encrypt() can only be called after"
369
+ " initialization or an update()")
370
+ self._next = ["encrypt", "digest"]
371
+
372
+ ciphertext = self._cipher.encrypt(plaintext, output=output)
373
+
374
+ if self._status == MacStatus.PROCESSING_AUTH_DATA:
375
+ self._pad_cache_and_update()
376
+ self._status = MacStatus.PROCESSING_CIPHERTEXT
377
+
378
+ self._update(ciphertext if output is None else output)
379
+ self._msg_len += len(plaintext)
380
+
381
+ # See NIST SP 800 38D, 5.2.1.1
382
+ if self._msg_len > 2**39 - 256:
383
+ raise ValueError("Plaintext exceeds maximum length")
384
+
385
+ return ciphertext
386
+
387
+ def decrypt(self, ciphertext, output=None):
388
+ """Decrypt data with the key and the parameters set at initialization.
389
+
390
+ A cipher object is stateful: once you have decrypted a message
391
+ you cannot decrypt (or encrypt) another message with the same
392
+ object.
393
+
394
+ The data to decrypt can be broken up in two or
395
+ more pieces and `decrypt` can be called multiple times.
396
+
397
+ That is, the statement:
398
+
399
+ >>> c.decrypt(a) + c.decrypt(b)
400
+
401
+ is equivalent to:
402
+
403
+ >>> c.decrypt(a+b)
404
+
405
+ This function does not remove any padding from the plaintext.
406
+
407
+ :Parameters:
408
+ ciphertext : bytes/bytearray/memoryview
409
+ The piece of data to decrypt.
410
+ It can be of any length.
411
+ :Keywords:
412
+ output : bytearray/memoryview
413
+ The location where the plaintext must be written to.
414
+ If ``None``, the plaintext is returned.
415
+ :Return:
416
+ If ``output`` is ``None``, the plaintext as ``bytes``.
417
+ Otherwise, ``None``.
418
+ """
419
+
420
+ if "decrypt" not in self._next:
421
+ raise TypeError("decrypt() can only be called"
422
+ " after initialization or an update()")
423
+ self._next = ["decrypt", "verify"]
424
+
425
+ if self._status == MacStatus.PROCESSING_AUTH_DATA:
426
+ self._pad_cache_and_update()
427
+ self._status = MacStatus.PROCESSING_CIPHERTEXT
428
+
429
+ self._update(ciphertext)
430
+ self._msg_len += len(ciphertext)
431
+
432
+ return self._cipher.decrypt(ciphertext, output=output)
433
+
434
+ def digest(self):
435
+ """Compute the *binary* MAC tag in an AEAD mode.
436
+
437
+ The caller invokes this function at the very end.
438
+
439
+ This method returns the MAC that shall be sent to the receiver,
440
+ together with the ciphertext.
441
+
442
+ :Return: the MAC, as a byte string.
443
+ """
444
+
445
+ if "digest" not in self._next:
446
+ raise TypeError("digest() cannot be called when decrypting"
447
+ " or validating a message")
448
+ self._next = ["digest"]
449
+
450
+ return self._compute_mac()
451
+
452
+ def _compute_mac(self):
453
+ """Compute MAC without any FSM checks."""
454
+
455
+ if self._tag:
456
+ return self._tag
457
+
458
+ # Step 5 in NIST SP 800-38D, Algorithm 4 - Compute S
459
+ self._pad_cache_and_update()
460
+ self._update(long_to_bytes(8 * self._auth_len, 8))
461
+ self._update(long_to_bytes(8 * self._msg_len, 8))
462
+ s_tag = self._signer.digest()
463
+
464
+ # Step 6 - Compute T
465
+ self._tag = self._tag_cipher.encrypt(s_tag)[:self._mac_len]
466
+
467
+ return self._tag
468
+
469
+ def hexdigest(self):
470
+ """Compute the *printable* MAC tag.
471
+
472
+ This method is like `digest`.
473
+
474
+ :Return: the MAC, as a hexadecimal string.
475
+ """
476
+ return "".join(["%02x" % bord(x) for x in self.digest()])
477
+
478
+ def verify(self, received_mac_tag):
479
+ """Validate the *binary* MAC tag.
480
+
481
+ The caller invokes this function at the very end.
482
+
483
+ This method checks if the decrypted message is indeed valid
484
+ (that is, if the key is correct) and it has not been
485
+ tampered with while in transit.
486
+
487
+ :Parameters:
488
+ received_mac_tag : bytes/bytearray/memoryview
489
+ This is the *binary* MAC, as received from the sender.
490
+ :Raises ValueError:
491
+ if the MAC does not match. The message has been tampered with
492
+ or the key is incorrect.
493
+ """
494
+
495
+ if "verify" not in self._next:
496
+ raise TypeError("verify() cannot be called"
497
+ " when encrypting a message")
498
+ self._next = ["verify"]
499
+
500
+ secret = get_random_bytes(16)
501
+
502
+ mac1 = BLAKE2s.new(digest_bits=160, key=secret,
503
+ data=self._compute_mac())
504
+ mac2 = BLAKE2s.new(digest_bits=160, key=secret,
505
+ data=received_mac_tag)
506
+
507
+ if mac1.digest() != mac2.digest():
508
+ raise ValueError("MAC check failed")
509
+
510
+ def hexverify(self, hex_mac_tag):
511
+ """Validate the *printable* MAC tag.
512
+
513
+ This method is like `verify`.
514
+
515
+ :Parameters:
516
+ hex_mac_tag : string
517
+ This is the *printable* MAC, as received from the sender.
518
+ :Raises ValueError:
519
+ if the MAC does not match. The message has been tampered with
520
+ or the key is incorrect.
521
+ """
522
+
523
+ self.verify(unhexlify(hex_mac_tag))
524
+
525
+ def encrypt_and_digest(self, plaintext, output=None):
526
+ """Perform encrypt() and digest() in one step.
527
+
528
+ :Parameters:
529
+ plaintext : bytes/bytearray/memoryview
530
+ The piece of data to encrypt.
531
+ :Keywords:
532
+ output : bytearray/memoryview
533
+ The location where the ciphertext must be written to.
534
+ If ``None``, the ciphertext is returned.
535
+ :Return:
536
+ a tuple with two items:
537
+
538
+ - the ciphertext, as ``bytes``
539
+ - the MAC tag, as ``bytes``
540
+
541
+ The first item becomes ``None`` when the ``output`` parameter
542
+ specified a location for the result.
543
+ """
544
+
545
+ return self.encrypt(plaintext, output=output), self.digest()
546
+
547
+ def decrypt_and_verify(self, ciphertext, received_mac_tag, output=None):
548
+ """Perform decrypt() and verify() in one step.
549
+
550
+ :Parameters:
551
+ ciphertext : bytes/bytearray/memoryview
552
+ The piece of data to decrypt.
553
+ received_mac_tag : byte string
554
+ This is the *binary* MAC, as received from the sender.
555
+ :Keywords:
556
+ output : bytearray/memoryview
557
+ The location where the plaintext must be written to.
558
+ If ``None``, the plaintext is returned.
559
+ :Return: the plaintext as ``bytes`` or ``None`` when the ``output``
560
+ parameter specified a location for the result.
561
+ :Raises ValueError:
562
+ if the MAC does not match. The message has been tampered with
563
+ or the key is incorrect.
564
+ """
565
+
566
+ plaintext = self.decrypt(ciphertext, output=output)
567
+ self.verify(received_mac_tag)
568
+ return plaintext
569
+
570
+
571
+ def _create_gcm_cipher(factory, **kwargs):
572
+ """Create a new block cipher, configured in Galois Counter Mode (GCM).
573
+
574
+ :Parameters:
575
+ factory : module
576
+ A block cipher module, taken from `Cryptodome.Cipher`.
577
+ The cipher must have block length of 16 bytes.
578
+ GCM has been only defined for `Cryptodome.Cipher.AES`.
579
+
580
+ :Keywords:
581
+ key : bytes/bytearray/memoryview
582
+ The secret key to use in the symmetric cipher.
583
+ It must be 16 (e.g. *AES-128*), 24 (e.g. *AES-192*)
584
+ or 32 (e.g. *AES-256*) bytes long.
585
+
586
+ nonce : bytes/bytearray/memoryview
587
+ A value that must never be reused for any other encryption.
588
+
589
+ There are no restrictions on its length,
590
+ but it is recommended to use at least 16 bytes.
591
+
592
+ The nonce shall never repeat for two
593
+ different messages encrypted with the same key,
594
+ but it does not need to be random.
595
+
596
+ If not provided, a 16 byte nonce will be randomly created.
597
+
598
+ mac_len : integer
599
+ Length of the MAC, in bytes.
600
+ It must be no larger than 16 bytes (which is the default).
601
+ """
602
+
603
+ try:
604
+ key = kwargs.pop("key")
605
+ except KeyError as e:
606
+ raise TypeError("Missing parameter:" + str(e))
607
+
608
+ nonce = kwargs.pop("nonce", None)
609
+ if nonce is None:
610
+ nonce = get_random_bytes(16)
611
+ mac_len = kwargs.pop("mac_len", 16)
612
+
613
+ # Not documented - only used for testing
614
+ use_clmul = kwargs.pop("use_clmul", True)
615
+ if use_clmul and _ghash_clmul:
616
+ ghash_c = _ghash_clmul
617
+ else:
618
+ ghash_c = _ghash_portable
619
+
620
+ return GcmMode(factory, key, nonce, mac_len, kwargs, ghash_c)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_gcm.pyi ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from types import ModuleType
2
+ from typing import Union, Tuple, Dict, overload, Optional
3
+
4
+ __all__ = ['GcmMode']
5
+
6
+ Buffer = Union[bytes, bytearray, memoryview]
7
+
8
+ class GcmMode(object):
9
+ block_size: int
10
+ nonce: Buffer
11
+
12
+ def __init__(self,
13
+ factory: ModuleType,
14
+ key: Buffer,
15
+ nonce: Buffer,
16
+ mac_len: int,
17
+ cipher_params: Dict) -> None: ...
18
+
19
+ def update(self, assoc_data: Buffer) -> GcmMode: ...
20
+
21
+ @overload
22
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
23
+ @overload
24
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
25
+ @overload
26
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
27
+ @overload
28
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
29
+
30
+ def digest(self) -> bytes: ...
31
+ def hexdigest(self) -> str: ...
32
+ def verify(self, received_mac_tag: Buffer) -> None: ...
33
+ def hexverify(self, hex_mac_tag: str) -> None: ...
34
+
35
+ @overload
36
+ def encrypt_and_digest(self,
37
+ plaintext: Buffer) -> Tuple[bytes, bytes]: ...
38
+ @overload
39
+ def encrypt_and_digest(self,
40
+ plaintext: Buffer,
41
+ output: Buffer) -> Tuple[None, bytes]: ...
42
+ def decrypt_and_verify(self,
43
+ ciphertext: Buffer,
44
+ received_mac_tag: Buffer,
45
+ output: Optional[Union[bytearray, memoryview]] = ...) -> bytes: ...
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_kw.py ADDED
@@ -0,0 +1,158 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import struct
2
+ from collections import deque
3
+
4
+ from types import ModuleType
5
+ from typing import Union
6
+
7
+ from Cryptodome.Util.strxor import strxor
8
+
9
+
10
+ def W(cipher: ModuleType,
11
+ plaintext: Union[bytes, bytearray]) -> bytes:
12
+
13
+ S = [plaintext[i:i+8] for i in range(0, len(plaintext), 8)]
14
+ n = len(S)
15
+ s = 6 * (n - 1)
16
+ A = S[0]
17
+ R = deque(S[1:])
18
+
19
+ for t in range(1, s + 1):
20
+ t_64 = struct.pack('>Q', t)
21
+ ct = cipher.encrypt(A + R.popleft())
22
+ A = strxor(ct[:8], t_64)
23
+ R.append(ct[8:])
24
+
25
+ return A + b''.join(R)
26
+
27
+
28
+ def W_inverse(cipher: ModuleType,
29
+ ciphertext: Union[bytes, bytearray]) -> bytes:
30
+
31
+ C = [ciphertext[i:i+8] for i in range(0, len(ciphertext), 8)]
32
+ n = len(C)
33
+ s = 6 * (n - 1)
34
+ A = C[0]
35
+ R = deque(C[1:])
36
+
37
+ for t in range(s, 0, -1):
38
+ t_64 = struct.pack('>Q', t)
39
+ pt = cipher.decrypt(strxor(A, t_64) + R.pop())
40
+ A = pt[:8]
41
+ R.appendleft(pt[8:])
42
+
43
+ return A + b''.join(R)
44
+
45
+
46
+ class KWMode(object):
47
+ """Key Wrap (KW) mode.
48
+
49
+ This is a deterministic Authenticated Encryption (AE) mode
50
+ for protecting cryptographic keys. See `NIST SP800-38F`_.
51
+
52
+ It provides both confidentiality and authenticity, and it designed
53
+ so that any bit of the ciphertext depends on all bits of the plaintext.
54
+
55
+ This mode is only available for ciphers that operate on 128 bits blocks
56
+ (e.g., AES).
57
+
58
+ .. _`NIST SP800-38F`: http://csrc.nist.gov/publications/nistpubs/800-38F/SP-800-38F.pdf
59
+
60
+ :undocumented: __init__
61
+ """
62
+
63
+ def __init__(self,
64
+ factory: ModuleType,
65
+ key: Union[bytes, bytearray]):
66
+
67
+ self.block_size = factory.block_size
68
+ if self.block_size != 16:
69
+ raise ValueError("Key Wrap mode is only available for ciphers"
70
+ " that operate on 128 bits blocks")
71
+
72
+ self._factory = factory
73
+ self._cipher = factory.new(key, factory.MODE_ECB)
74
+ self._done = False
75
+
76
+ def seal(self, plaintext: Union[bytes, bytearray]) -> bytes:
77
+ """Encrypt and authenticate (wrap) a cryptographic key.
78
+
79
+ Args:
80
+ plaintext:
81
+ The cryptographic key to wrap.
82
+ It must be at least 16 bytes long, and its length
83
+ must be a multiple of 8.
84
+
85
+ Returns:
86
+ The wrapped key.
87
+ """
88
+
89
+ if self._done:
90
+ raise ValueError("The cipher cannot be used more than once")
91
+
92
+ if len(plaintext) % 8:
93
+ raise ValueError("The plaintext must have length multiple of 8 bytes")
94
+
95
+ if len(plaintext) < 16:
96
+ raise ValueError("The plaintext must be at least 16 bytes long")
97
+
98
+ if len(plaintext) >= 2**32:
99
+ raise ValueError("The plaintext is too long")
100
+
101
+ res = W(self._cipher, b'\xA6\xA6\xA6\xA6\xA6\xA6\xA6\xA6' + plaintext)
102
+ self._done = True
103
+ return res
104
+
105
+ def unseal(self, ciphertext: Union[bytes, bytearray]) -> bytes:
106
+ """Decrypt and authenticate (unwrap) a cryptographic key.
107
+
108
+ Args:
109
+ ciphertext:
110
+ The cryptographic key to unwrap.
111
+ It must be at least 24 bytes long, and its length
112
+ must be a multiple of 8.
113
+
114
+ Returns:
115
+ The original key.
116
+
117
+ Raises: ValueError
118
+ If the ciphertext or the key are not valid.
119
+ """
120
+
121
+ if self._done:
122
+ raise ValueError("The cipher cannot be used more than once")
123
+
124
+ if len(ciphertext) % 8:
125
+ raise ValueError("The ciphertext must have length multiple of 8 bytes")
126
+
127
+ if len(ciphertext) < 24:
128
+ raise ValueError("The ciphertext must be at least 24 bytes long")
129
+
130
+ pt = W_inverse(self._cipher, ciphertext)
131
+
132
+ if pt[:8] != b'\xA6\xA6\xA6\xA6\xA6\xA6\xA6\xA6':
133
+ raise ValueError("Incorrect integrity check value")
134
+ self._done = True
135
+
136
+ return pt[8:]
137
+
138
+
139
+ def _create_kw_cipher(factory: ModuleType,
140
+ **kwargs: Union[bytes, bytearray]) -> KWMode:
141
+ """Create a new block cipher in Key Wrap mode.
142
+
143
+ Args:
144
+ factory:
145
+ A block cipher module, taken from `Cryptodome.Cipher`.
146
+ The cipher must have block length of 16 bytes, such as AES.
147
+
148
+ Keywords:
149
+ key:
150
+ The secret key to use to seal or unseal.
151
+ """
152
+
153
+ try:
154
+ key = kwargs["key"]
155
+ except KeyError as e:
156
+ raise TypeError("Missing parameter:" + str(e))
157
+
158
+ return KWMode(factory, key)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_kwp.py ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import struct
2
+
3
+ from types import ModuleType
4
+ from typing import Union
5
+
6
+ from ._mode_kw import W, W_inverse
7
+
8
+
9
+ class KWPMode(object):
10
+ """Key Wrap with Padding (KWP) mode.
11
+
12
+ This is a deterministic Authenticated Encryption (AE) mode
13
+ for protecting cryptographic keys. See `NIST SP800-38F`_.
14
+
15
+ It provides both confidentiality and authenticity, and it designed
16
+ so that any bit of the ciphertext depends on all bits of the plaintext.
17
+
18
+ This mode is only available for ciphers that operate on 128 bits blocks
19
+ (e.g., AES).
20
+
21
+ .. _`NIST SP800-38F`: http://csrc.nist.gov/publications/nistpubs/800-38F/SP-800-38F.pdf
22
+
23
+ :undocumented: __init__
24
+ """
25
+
26
+ def __init__(self,
27
+ factory: ModuleType,
28
+ key: Union[bytes, bytearray]):
29
+
30
+ self.block_size = factory.block_size
31
+ if self.block_size != 16:
32
+ raise ValueError("Key Wrap with Padding mode is only available for ciphers"
33
+ " that operate on 128 bits blocks")
34
+
35
+ self._factory = factory
36
+ self._cipher = factory.new(key, factory.MODE_ECB)
37
+ self._done = False
38
+
39
+ def seal(self, plaintext: Union[bytes, bytearray]) -> bytes:
40
+ """Encrypt and authenticate (wrap) a cryptographic key.
41
+
42
+ Args:
43
+ plaintext:
44
+ The cryptographic key to wrap.
45
+
46
+ Returns:
47
+ The wrapped key.
48
+ """
49
+
50
+ if self._done:
51
+ raise ValueError("The cipher cannot be used more than once")
52
+
53
+ if len(plaintext) == 0:
54
+ raise ValueError("The plaintext must be at least 1 byte")
55
+
56
+ if len(plaintext) >= 2 ** 32:
57
+ raise ValueError("The plaintext is too long")
58
+
59
+ padlen = (8 - len(plaintext)) % 8
60
+ padded = plaintext + b'\x00' * padlen
61
+
62
+ AIV = b'\xA6\x59\x59\xA6' + struct.pack('>I', len(plaintext))
63
+
64
+ if len(padded) == 8:
65
+ res = self._cipher.encrypt(AIV + padded)
66
+ else:
67
+ res = W(self._cipher, AIV + padded)
68
+
69
+ return res
70
+
71
+ def unseal(self, ciphertext: Union[bytes, bytearray]) -> bytes:
72
+ """Decrypt and authenticate (unwrap) a cryptographic key.
73
+
74
+ Args:
75
+ ciphertext:
76
+ The cryptographic key to unwrap.
77
+ It must be at least 16 bytes long, and its length
78
+ must be a multiple of 8.
79
+
80
+ Returns:
81
+ The original key.
82
+
83
+ Raises: ValueError
84
+ If the ciphertext or the key are not valid.
85
+ """
86
+
87
+ if self._done:
88
+ raise ValueError("The cipher cannot be used more than once")
89
+
90
+ if len(ciphertext) % 8:
91
+ raise ValueError("The ciphertext must have length multiple of 8 bytes")
92
+
93
+ if len(ciphertext) < 16:
94
+ raise ValueError("The ciphertext must be at least 24 bytes long")
95
+
96
+ if len(ciphertext) == 16:
97
+ S = self._cipher.decrypt(ciphertext)
98
+ else:
99
+ S = W_inverse(self._cipher, ciphertext)
100
+
101
+ if S[:4] != b'\xA6\x59\x59\xA6':
102
+ raise ValueError("Incorrect decryption")
103
+
104
+ Plen = struct.unpack('>I', S[4:8])[0]
105
+
106
+ padlen = len(S) - 8 - Plen
107
+ if padlen < 0 or padlen > 7:
108
+ raise ValueError("Incorrect decryption")
109
+
110
+ if S[len(S) - padlen:] != b'\x00' * padlen:
111
+ raise ValueError("Incorrect decryption")
112
+
113
+ return S[8:len(S) - padlen]
114
+
115
+
116
+ def _create_kwp_cipher(factory: ModuleType,
117
+ **kwargs: Union[bytes, bytearray]) -> KWPMode:
118
+ """Create a new block cipher in Key Wrap with Padding mode.
119
+
120
+ Args:
121
+ factory:
122
+ A block cipher module, taken from `Cryptodome.Cipher`.
123
+ The cipher must have block length of 16 bytes, such as AES.
124
+
125
+ Keywords:
126
+ key:
127
+ The secret key to use to seal or unseal.
128
+ """
129
+
130
+ try:
131
+ key = kwargs["key"]
132
+ except KeyError as e:
133
+ raise TypeError("Missing parameter:" + str(e))
134
+
135
+ return KWPMode(factory, key)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ocb.py ADDED
@@ -0,0 +1,532 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ===================================================================
2
+ #
3
+ # Copyright (c) 2014, Legrandin <helderijs@gmail.com>
4
+ # All rights reserved.
5
+ #
6
+ # Redistribution and use in source and binary forms, with or without
7
+ # modification, are permitted provided that the following conditions
8
+ # are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright
11
+ # notice, this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright
13
+ # notice, this list of conditions and the following disclaimer in
14
+ # the documentation and/or other materials provided with the
15
+ # distribution.
16
+ #
17
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19
+ # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
20
+ # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21
+ # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26
+ # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
27
+ # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
+ # POSSIBILITY OF SUCH DAMAGE.
29
+ # ===================================================================
30
+
31
+ """
32
+ Offset Codebook (OCB) mode.
33
+
34
+ OCB is Authenticated Encryption with Associated Data (AEAD) cipher mode
35
+ designed by Prof. Phillip Rogaway and specified in `RFC7253`_.
36
+
37
+ The algorithm provides both authenticity and privacy, it is very efficient,
38
+ it uses only one key and it can be used in online mode (so that encryption
39
+ or decryption can start before the end of the message is available).
40
+
41
+ This module implements the third and last variant of OCB (OCB3) and it only
42
+ works in combination with a 128-bit block symmetric cipher, like AES.
43
+
44
+ OCB is patented in US but `free licenses`_ exist for software implementations
45
+ meant for non-military purposes.
46
+
47
+ Example:
48
+ >>> from Cryptodome.Cipher import AES
49
+ >>> from Cryptodome.Random import get_random_bytes
50
+ >>>
51
+ >>> key = get_random_bytes(32)
52
+ >>> cipher = AES.new(key, AES.MODE_OCB)
53
+ >>> plaintext = b"Attack at dawn"
54
+ >>> ciphertext, mac = cipher.encrypt_and_digest(plaintext)
55
+ >>> # Deliver cipher.nonce, ciphertext and mac
56
+ ...
57
+ >>> cipher = AES.new(key, AES.MODE_OCB, nonce=nonce)
58
+ >>> try:
59
+ >>> plaintext = cipher.decrypt_and_verify(ciphertext, mac)
60
+ >>> except ValueError:
61
+ >>> print "Invalid message"
62
+ >>> else:
63
+ >>> print plaintext
64
+
65
+ :undocumented: __package__
66
+
67
+ .. _RFC7253: http://www.rfc-editor.org/info/rfc7253
68
+ .. _free licenses: http://web.cs.ucdavis.edu/~rogaway/ocb/license.htm
69
+ """
70
+
71
+ import struct
72
+ from binascii import unhexlify
73
+
74
+ from Cryptodome.Util.py3compat import bord, _copy_bytes, bchr
75
+ from Cryptodome.Util.number import long_to_bytes, bytes_to_long
76
+ from Cryptodome.Util.strxor import strxor
77
+
78
+ from Cryptodome.Hash import BLAKE2s
79
+ from Cryptodome.Random import get_random_bytes
80
+
81
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib, VoidPointer,
82
+ create_string_buffer, get_raw_buffer,
83
+ SmartPointer, c_size_t, c_uint8_ptr,
84
+ is_buffer)
85
+
86
+ _raw_ocb_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_ocb", """
87
+ int OCB_start_operation(void *cipher,
88
+ const uint8_t *offset_0,
89
+ size_t offset_0_len,
90
+ void **pState);
91
+ int OCB_encrypt(void *state,
92
+ const uint8_t *in,
93
+ uint8_t *out,
94
+ size_t data_len);
95
+ int OCB_decrypt(void *state,
96
+ const uint8_t *in,
97
+ uint8_t *out,
98
+ size_t data_len);
99
+ int OCB_update(void *state,
100
+ const uint8_t *in,
101
+ size_t data_len);
102
+ int OCB_digest(void *state,
103
+ uint8_t *tag,
104
+ size_t tag_len);
105
+ int OCB_stop_operation(void *state);
106
+ """)
107
+
108
+
109
+ class OcbMode(object):
110
+ """Offset Codebook (OCB) mode.
111
+
112
+ :undocumented: __init__
113
+ """
114
+
115
+ def __init__(self, factory, nonce, mac_len, cipher_params):
116
+
117
+ if factory.block_size != 16:
118
+ raise ValueError("OCB mode is only available for ciphers"
119
+ " that operate on 128 bits blocks")
120
+
121
+ self.block_size = 16
122
+ """The block size of the underlying cipher, in bytes."""
123
+
124
+ self.nonce = _copy_bytes(None, None, nonce)
125
+ """Nonce used for this session."""
126
+ if len(nonce) not in range(1, 16):
127
+ raise ValueError("Nonce must be at most 15 bytes long")
128
+ if not is_buffer(nonce):
129
+ raise TypeError("Nonce must be bytes, bytearray or memoryview")
130
+
131
+ self._mac_len = mac_len
132
+ if not 8 <= mac_len <= 16:
133
+ raise ValueError("MAC tag must be between 8 and 16 bytes long")
134
+
135
+ # Cache for MAC tag
136
+ self._mac_tag = None
137
+
138
+ # Cache for unaligned associated data
139
+ self._cache_A = b""
140
+
141
+ # Cache for unaligned ciphertext/plaintext
142
+ self._cache_P = b""
143
+
144
+ # Allowed transitions after initialization
145
+ self._next = ["update", "encrypt", "decrypt",
146
+ "digest", "verify"]
147
+
148
+ # Compute Offset_0
149
+ params_without_key = dict(cipher_params)
150
+ key = params_without_key.pop("key")
151
+
152
+ taglen_mod128 = (self._mac_len * 8) % 128
153
+ if len(self.nonce) < 15:
154
+ nonce = bchr(taglen_mod128 << 1) +\
155
+ b'\x00' * (14 - len(nonce)) +\
156
+ b'\x01' +\
157
+ self.nonce
158
+ else:
159
+ nonce = bchr((taglen_mod128 << 1) | 0x01) +\
160
+ self.nonce
161
+
162
+ bottom_bits = bord(nonce[15]) & 0x3F # 6 bits, 0..63
163
+ top_bits = bord(nonce[15]) & 0xC0 # 2 bits
164
+
165
+ ktop_cipher = factory.new(key,
166
+ factory.MODE_ECB,
167
+ **params_without_key)
168
+ ktop = ktop_cipher.encrypt(struct.pack('15sB',
169
+ nonce[:15],
170
+ top_bits))
171
+
172
+ stretch = ktop + strxor(ktop[:8], ktop[1:9]) # 192 bits
173
+ offset_0 = long_to_bytes(bytes_to_long(stretch) >>
174
+ (64 - bottom_bits), 24)[8:]
175
+
176
+ # Create low-level cipher instance
177
+ raw_cipher = factory._create_base_cipher(cipher_params)
178
+ if cipher_params:
179
+ raise TypeError("Unknown keywords: " + str(cipher_params))
180
+
181
+ self._state = VoidPointer()
182
+ result = _raw_ocb_lib.OCB_start_operation(raw_cipher.get(),
183
+ offset_0,
184
+ c_size_t(len(offset_0)),
185
+ self._state.address_of())
186
+ if result:
187
+ raise ValueError("Error %d while instantiating the OCB mode"
188
+ % result)
189
+
190
+ # Ensure that object disposal of this Python object will (eventually)
191
+ # free the memory allocated by the raw library for the cipher mode
192
+ self._state = SmartPointer(self._state.get(),
193
+ _raw_ocb_lib.OCB_stop_operation)
194
+
195
+ # Memory allocated for the underlying block cipher is now owed
196
+ # by the cipher mode
197
+ raw_cipher.release()
198
+
199
+ def _update(self, assoc_data, assoc_data_len):
200
+ result = _raw_ocb_lib.OCB_update(self._state.get(),
201
+ c_uint8_ptr(assoc_data),
202
+ c_size_t(assoc_data_len))
203
+ if result:
204
+ raise ValueError("Error %d while computing MAC in OCB mode" % result)
205
+
206
+ def update(self, assoc_data):
207
+ """Process the associated data.
208
+
209
+ If there is any associated data, the caller has to invoke
210
+ this method one or more times, before using
211
+ ``decrypt`` or ``encrypt``.
212
+
213
+ By *associated data* it is meant any data (e.g. packet headers) that
214
+ will not be encrypted and will be transmitted in the clear.
215
+ However, the receiver shall still able to detect modifications.
216
+
217
+ If there is no associated data, this method must not be called.
218
+
219
+ The caller may split associated data in segments of any size, and
220
+ invoke this method multiple times, each time with the next segment.
221
+
222
+ :Parameters:
223
+ assoc_data : bytes/bytearray/memoryview
224
+ A piece of associated data.
225
+ """
226
+
227
+ if "update" not in self._next:
228
+ raise TypeError("update() can only be called"
229
+ " immediately after initialization")
230
+
231
+ self._next = ["encrypt", "decrypt", "digest",
232
+ "verify", "update"]
233
+
234
+ if len(self._cache_A) > 0:
235
+ filler = min(16 - len(self._cache_A), len(assoc_data))
236
+ self._cache_A += _copy_bytes(None, filler, assoc_data)
237
+ assoc_data = assoc_data[filler:]
238
+
239
+ if len(self._cache_A) < 16:
240
+ return self
241
+
242
+ # Clear the cache, and proceeding with any other aligned data
243
+ self._cache_A, seg = b"", self._cache_A
244
+ self.update(seg)
245
+
246
+ update_len = len(assoc_data) // 16 * 16
247
+ self._cache_A = _copy_bytes(update_len, None, assoc_data)
248
+ self._update(assoc_data, update_len)
249
+ return self
250
+
251
+ def _transcrypt_aligned(self, in_data, in_data_len,
252
+ trans_func, trans_desc):
253
+
254
+ out_data = create_string_buffer(in_data_len)
255
+ result = trans_func(self._state.get(),
256
+ in_data,
257
+ out_data,
258
+ c_size_t(in_data_len))
259
+ if result:
260
+ raise ValueError("Error %d while %sing in OCB mode"
261
+ % (result, trans_desc))
262
+ return get_raw_buffer(out_data)
263
+
264
+ def _transcrypt(self, in_data, trans_func, trans_desc):
265
+ # Last piece to encrypt/decrypt
266
+ if in_data is None:
267
+ out_data = self._transcrypt_aligned(self._cache_P,
268
+ len(self._cache_P),
269
+ trans_func,
270
+ trans_desc)
271
+ self._cache_P = b""
272
+ return out_data
273
+
274
+ # Try to fill up the cache, if it already contains something
275
+ prefix = b""
276
+ if len(self._cache_P) > 0:
277
+ filler = min(16 - len(self._cache_P), len(in_data))
278
+ self._cache_P += _copy_bytes(None, filler, in_data)
279
+ in_data = in_data[filler:]
280
+
281
+ if len(self._cache_P) < 16:
282
+ # We could not manage to fill the cache, so there is certainly
283
+ # no output yet.
284
+ return b""
285
+
286
+ # Clear the cache, and proceeding with any other aligned data
287
+ prefix = self._transcrypt_aligned(self._cache_P,
288
+ len(self._cache_P),
289
+ trans_func,
290
+ trans_desc)
291
+ self._cache_P = b""
292
+
293
+ # Process data in multiples of the block size
294
+ trans_len = len(in_data) // 16 * 16
295
+ result = self._transcrypt_aligned(c_uint8_ptr(in_data),
296
+ trans_len,
297
+ trans_func,
298
+ trans_desc)
299
+ if prefix:
300
+ result = prefix + result
301
+
302
+ # Left-over
303
+ self._cache_P = _copy_bytes(trans_len, None, in_data)
304
+
305
+ return result
306
+
307
+ def encrypt(self, plaintext=None):
308
+ """Encrypt the next piece of plaintext.
309
+
310
+ After the entire plaintext has been passed (but before `digest`),
311
+ you **must** call this method one last time with no arguments to collect
312
+ the final piece of ciphertext.
313
+
314
+ If possible, use the method `encrypt_and_digest` instead.
315
+
316
+ :Parameters:
317
+ plaintext : bytes/bytearray/memoryview
318
+ The next piece of data to encrypt or ``None`` to signify
319
+ that encryption has finished and that any remaining ciphertext
320
+ has to be produced.
321
+ :Return:
322
+ the ciphertext, as a byte string.
323
+ Its length may not match the length of the *plaintext*.
324
+ """
325
+
326
+ if "encrypt" not in self._next:
327
+ raise TypeError("encrypt() can only be called after"
328
+ " initialization or an update()")
329
+
330
+ if plaintext is None:
331
+ self._next = ["digest"]
332
+ else:
333
+ self._next = ["encrypt"]
334
+ return self._transcrypt(plaintext, _raw_ocb_lib.OCB_encrypt, "encrypt")
335
+
336
+ def decrypt(self, ciphertext=None):
337
+ """Decrypt the next piece of ciphertext.
338
+
339
+ After the entire ciphertext has been passed (but before `verify`),
340
+ you **must** call this method one last time with no arguments to collect
341
+ the remaining piece of plaintext.
342
+
343
+ If possible, use the method `decrypt_and_verify` instead.
344
+
345
+ :Parameters:
346
+ ciphertext : bytes/bytearray/memoryview
347
+ The next piece of data to decrypt or ``None`` to signify
348
+ that decryption has finished and that any remaining plaintext
349
+ has to be produced.
350
+ :Return:
351
+ the plaintext, as a byte string.
352
+ Its length may not match the length of the *ciphertext*.
353
+ """
354
+
355
+ if "decrypt" not in self._next:
356
+ raise TypeError("decrypt() can only be called after"
357
+ " initialization or an update()")
358
+
359
+ if ciphertext is None:
360
+ self._next = ["verify"]
361
+ else:
362
+ self._next = ["decrypt"]
363
+ return self._transcrypt(ciphertext,
364
+ _raw_ocb_lib.OCB_decrypt,
365
+ "decrypt")
366
+
367
+ def _compute_mac_tag(self):
368
+
369
+ if self._mac_tag is not None:
370
+ return
371
+
372
+ if self._cache_A:
373
+ self._update(self._cache_A, len(self._cache_A))
374
+ self._cache_A = b""
375
+
376
+ mac_tag = create_string_buffer(16)
377
+ result = _raw_ocb_lib.OCB_digest(self._state.get(),
378
+ mac_tag,
379
+ c_size_t(len(mac_tag))
380
+ )
381
+ if result:
382
+ raise ValueError("Error %d while computing digest in OCB mode"
383
+ % result)
384
+ self._mac_tag = get_raw_buffer(mac_tag)[:self._mac_len]
385
+
386
+ def digest(self):
387
+ """Compute the *binary* MAC tag.
388
+
389
+ Call this method after the final `encrypt` (the one with no arguments)
390
+ to obtain the MAC tag.
391
+
392
+ The MAC tag is needed by the receiver to determine authenticity
393
+ of the message.
394
+
395
+ :Return: the MAC, as a byte string.
396
+ """
397
+
398
+ if "digest" not in self._next:
399
+ raise TypeError("digest() cannot be called now for this cipher")
400
+
401
+ assert(len(self._cache_P) == 0)
402
+
403
+ self._next = ["digest"]
404
+
405
+ if self._mac_tag is None:
406
+ self._compute_mac_tag()
407
+
408
+ return self._mac_tag
409
+
410
+ def hexdigest(self):
411
+ """Compute the *printable* MAC tag.
412
+
413
+ This method is like `digest`.
414
+
415
+ :Return: the MAC, as a hexadecimal string.
416
+ """
417
+ return "".join(["%02x" % bord(x) for x in self.digest()])
418
+
419
+ def verify(self, received_mac_tag):
420
+ """Validate the *binary* MAC tag.
421
+
422
+ Call this method after the final `decrypt` (the one with no arguments)
423
+ to check if the message is authentic and valid.
424
+
425
+ :Parameters:
426
+ received_mac_tag : bytes/bytearray/memoryview
427
+ This is the *binary* MAC, as received from the sender.
428
+ :Raises ValueError:
429
+ if the MAC does not match. The message has been tampered with
430
+ or the key is incorrect.
431
+ """
432
+
433
+ if "verify" not in self._next:
434
+ raise TypeError("verify() cannot be called now for this cipher")
435
+
436
+ assert(len(self._cache_P) == 0)
437
+
438
+ self._next = ["verify"]
439
+
440
+ if self._mac_tag is None:
441
+ self._compute_mac_tag()
442
+
443
+ secret = get_random_bytes(16)
444
+ mac1 = BLAKE2s.new(digest_bits=160, key=secret, data=self._mac_tag)
445
+ mac2 = BLAKE2s.new(digest_bits=160, key=secret, data=received_mac_tag)
446
+
447
+ if mac1.digest() != mac2.digest():
448
+ raise ValueError("MAC check failed")
449
+
450
+ def hexverify(self, hex_mac_tag):
451
+ """Validate the *printable* MAC tag.
452
+
453
+ This method is like `verify`.
454
+
455
+ :Parameters:
456
+ hex_mac_tag : string
457
+ This is the *printable* MAC, as received from the sender.
458
+ :Raises ValueError:
459
+ if the MAC does not match. The message has been tampered with
460
+ or the key is incorrect.
461
+ """
462
+
463
+ self.verify(unhexlify(hex_mac_tag))
464
+
465
+ def encrypt_and_digest(self, plaintext):
466
+ """Encrypt the message and create the MAC tag in one step.
467
+
468
+ :Parameters:
469
+ plaintext : bytes/bytearray/memoryview
470
+ The entire message to encrypt.
471
+ :Return:
472
+ a tuple with two byte strings:
473
+
474
+ - the encrypted data
475
+ - the MAC
476
+ """
477
+
478
+ return self.encrypt(plaintext) + self.encrypt(), self.digest()
479
+
480
+ def decrypt_and_verify(self, ciphertext, received_mac_tag):
481
+ """Decrypted the message and verify its authenticity in one step.
482
+
483
+ :Parameters:
484
+ ciphertext : bytes/bytearray/memoryview
485
+ The entire message to decrypt.
486
+ received_mac_tag : byte string
487
+ This is the *binary* MAC, as received from the sender.
488
+
489
+ :Return: the decrypted data (byte string).
490
+ :Raises ValueError:
491
+ if the MAC does not match. The message has been tampered with
492
+ or the key is incorrect.
493
+ """
494
+
495
+ plaintext = self.decrypt(ciphertext) + self.decrypt()
496
+ self.verify(received_mac_tag)
497
+ return plaintext
498
+
499
+
500
+ def _create_ocb_cipher(factory, **kwargs):
501
+ """Create a new block cipher, configured in OCB mode.
502
+
503
+ :Parameters:
504
+ factory : module
505
+ A symmetric cipher module from `Cryptodome.Cipher`
506
+ (like `Cryptodome.Cipher.AES`).
507
+
508
+ :Keywords:
509
+ nonce : bytes/bytearray/memoryview
510
+ A value that must never be reused for any other encryption.
511
+ Its length can vary from 1 to 15 bytes.
512
+ If not specified, a random 15 bytes long nonce is generated.
513
+
514
+ mac_len : integer
515
+ Length of the MAC, in bytes.
516
+ It must be in the range ``[8..16]``.
517
+ The default is 16 (128 bits).
518
+
519
+ Any other keyword will be passed to the underlying block cipher.
520
+ See the relevant documentation for details (at least ``key`` will need
521
+ to be present).
522
+ """
523
+
524
+ try:
525
+ nonce = kwargs.pop("nonce", None)
526
+ if nonce is None:
527
+ nonce = get_random_bytes(15)
528
+ mac_len = kwargs.pop("mac_len", 16)
529
+ except KeyError as e:
530
+ raise TypeError("Keyword missing: " + str(e))
531
+
532
+ return OcbMode(factory, nonce, mac_len, kwargs)
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ocb.pyi ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from types import ModuleType
2
+ from typing import Union, Any, Optional, Tuple, Dict, overload
3
+
4
+ Buffer = Union[bytes, bytearray, memoryview]
5
+
6
+ class OcbMode(object):
7
+ block_size: int
8
+ nonce: Buffer
9
+
10
+ def __init__(self,
11
+ factory: ModuleType,
12
+ nonce: Buffer,
13
+ mac_len: int,
14
+ cipher_params: Dict) -> None: ...
15
+
16
+ def update(self, assoc_data: Buffer) -> OcbMode: ...
17
+
18
+ @overload
19
+ def encrypt(self, plaintext: Buffer) -> bytes: ...
20
+ @overload
21
+ def encrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
22
+ @overload
23
+ def decrypt(self, plaintext: Buffer) -> bytes: ...
24
+ @overload
25
+ def decrypt(self, plaintext: Buffer, output: Union[bytearray, memoryview]) -> None: ...
26
+
27
+ def digest(self) -> bytes: ...
28
+ def hexdigest(self) -> str: ...
29
+ def verify(self, received_mac_tag: Buffer) -> None: ...
30
+ def hexverify(self, hex_mac_tag: str) -> None: ...
31
+
32
+ def encrypt_and_digest(self,
33
+ plaintext: Buffer) -> Tuple[bytes, bytes]: ...
34
+ def decrypt_and_verify(self,
35
+ ciphertext: Buffer,
36
+ received_mac_tag: Buffer) -> bytes: ...
python/py313/Lib/site-packages/Cryptodome/Cipher/_mode_ofb.py ADDED
@@ -0,0 +1,282 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ # Cipher/mode_ofb.py : OFB mode
4
+ #
5
+ # ===================================================================
6
+ # The contents of this file are dedicated to the public domain. To
7
+ # the extent that dedication to the public domain is not available,
8
+ # everyone is granted a worldwide, perpetual, royalty-free,
9
+ # non-exclusive license to exercise all rights associated with the
10
+ # contents of this file for any purpose whatsoever.
11
+ # No rights are reserved.
12
+ #
13
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
17
+ # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
18
+ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19
+ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ # SOFTWARE.
21
+ # ===================================================================
22
+
23
+ """
24
+ Output Feedback (CFB) mode.
25
+ """
26
+
27
+ __all__ = ['OfbMode']
28
+
29
+ from Cryptodome.Util.py3compat import _copy_bytes
30
+ from Cryptodome.Util._raw_api import (load_pycryptodome_raw_lib, VoidPointer,
31
+ create_string_buffer, get_raw_buffer,
32
+ SmartPointer, c_size_t, c_uint8_ptr,
33
+ is_writeable_buffer)
34
+
35
+ from Cryptodome.Random import get_random_bytes
36
+
37
+ raw_ofb_lib = load_pycryptodome_raw_lib("Cryptodome.Cipher._raw_ofb", """
38
+ int OFB_start_operation(void *cipher,
39
+ const uint8_t iv[],
40
+ size_t iv_len,
41
+ void **pResult);
42
+ int OFB_encrypt(void *ofbState,
43
+ const uint8_t *in,
44
+ uint8_t *out,
45
+ size_t data_len);
46
+ int OFB_decrypt(void *ofbState,
47
+ const uint8_t *in,
48
+ uint8_t *out,
49
+ size_t data_len);
50
+ int OFB_stop_operation(void *state);
51
+ """
52
+ )
53
+
54
+
55
+ class OfbMode(object):
56
+ """*Output FeedBack (OFB)*.
57
+
58
+ This mode is very similar to CBC, but it
59
+ transforms the underlying block cipher into a stream cipher.
60
+
61
+ The keystream is the iterated block encryption of the
62
+ previous ciphertext block.
63
+
64
+ An Initialization Vector (*IV*) is required.
65
+
66
+ See `NIST SP800-38A`_ , Section 6.4.
67
+
68
+ .. _`NIST SP800-38A` : http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
69
+
70
+ :undocumented: __init__
71
+ """
72
+
73
+ def __init__(self, block_cipher, iv):
74
+ """Create a new block cipher, configured in OFB mode.
75
+
76
+ :Parameters:
77
+ block_cipher : C pointer
78
+ A smart pointer to the low-level block cipher instance.
79
+
80
+ iv : bytes/bytearray/memoryview
81
+ The initialization vector to use for encryption or decryption.
82
+ It is as long as the cipher block.
83
+
84
+ **The IV must be a nonce, to to be reused for any other
85
+ message**. It shall be a nonce or a random value.
86
+
87
+ Reusing the *IV* for encryptions performed with the same key
88
+ compromises confidentiality.
89
+ """
90
+
91
+ self._state = VoidPointer()
92
+ result = raw_ofb_lib.OFB_start_operation(block_cipher.get(),
93
+ c_uint8_ptr(iv),
94
+ c_size_t(len(iv)),
95
+ self._state.address_of())
96
+ if result:
97
+ raise ValueError("Error %d while instantiating the OFB mode"
98
+ % result)
99
+
100
+ # Ensure that object disposal of this Python object will (eventually)
101
+ # free the memory allocated by the raw library for the cipher mode
102
+ self._state = SmartPointer(self._state.get(),
103
+ raw_ofb_lib.OFB_stop_operation)
104
+
105
+ # Memory allocated for the underlying block cipher is now owed
106
+ # by the cipher mode
107
+ block_cipher.release()
108
+
109
+ self.block_size = len(iv)
110
+ """The block size of the underlying cipher, in bytes."""
111
+
112
+ self.iv = _copy_bytes(None, None, iv)
113
+ """The Initialization Vector originally used to create the object.
114
+ The value does not change."""
115
+
116
+ self.IV = self.iv
117
+ """Alias for `iv`"""
118
+
119
+ self._next = ["encrypt", "decrypt"]
120
+
121
+ def encrypt(self, plaintext, output=None):
122
+ """Encrypt data with the key and the parameters set at initialization.
123
+
124
+ A cipher object is stateful: once you have encrypted a message
125
+ you cannot encrypt (or decrypt) another message using the same
126
+ object.
127
+
128
+ The data to encrypt can be broken up in two or
129
+ more pieces and `encrypt` can be called multiple times.
130
+
131
+ That is, the statement:
132
+
133
+ >>> c.encrypt(a) + c.encrypt(b)
134
+
135
+ is equivalent to:
136
+
137
+ >>> c.encrypt(a+b)
138
+
139
+ This function does not add any padding to the plaintext.
140
+
141
+ :Parameters:
142
+ plaintext : bytes/bytearray/memoryview
143
+ The piece of data to encrypt.
144
+ It can be of any length.
145
+ :Keywords:
146
+ output : bytearray/memoryview
147
+ The location where the ciphertext must be written to.
148
+ If ``None``, the ciphertext is returned.
149
+ :Return:
150
+ If ``output`` is ``None``, the ciphertext is returned as ``bytes``.
151
+ Otherwise, ``None``.
152
+ """
153
+
154
+ if "encrypt" not in self._next:
155
+ raise TypeError("encrypt() cannot be called after decrypt()")
156
+ self._next = ["encrypt"]
157
+
158
+ if output is None:
159
+ ciphertext = create_string_buffer(len(plaintext))
160
+ else:
161
+ ciphertext = output
162
+
163
+ if not is_writeable_buffer(output):
164
+ raise TypeError("output must be a bytearray or a writeable memoryview")
165
+
166
+ if len(plaintext) != len(output):
167
+ raise ValueError("output must have the same length as the input"
168
+ " (%d bytes)" % len(plaintext))
169
+
170
+ result = raw_ofb_lib.OFB_encrypt(self._state.get(),
171
+ c_uint8_ptr(plaintext),
172
+ c_uint8_ptr(ciphertext),
173
+ c_size_t(len(plaintext)))
174
+ if result:
175
+ raise ValueError("Error %d while encrypting in OFB mode" % result)
176
+
177
+ if output is None:
178
+ return get_raw_buffer(ciphertext)
179
+ else:
180
+ return None
181
+
182
+ def decrypt(self, ciphertext, output=None):
183
+ """Decrypt data with the key and the parameters set at initialization.
184
+
185
+ A cipher object is stateful: once you have decrypted a message
186
+ you cannot decrypt (or encrypt) another message with the same
187
+ object.
188
+
189
+ The data to decrypt can be broken up in two or
190
+ more pieces and `decrypt` can be called multiple times.
191
+
192
+ That is, the statement:
193
+
194
+ >>> c.decrypt(a) + c.decrypt(b)
195
+
196
+ is equivalent to:
197
+
198
+ >>> c.decrypt(a+b)
199
+
200
+ This function does not remove any padding from the plaintext.
201
+
202
+ :Parameters:
203
+ ciphertext : bytes/bytearray/memoryview
204
+ The piece of data to decrypt.
205
+ It can be of any length.
206
+ :Keywords:
207
+ output : bytearray/memoryview
208
+ The location where the plaintext is written to.
209
+ If ``None``, the plaintext is returned.
210
+ :Return:
211
+ If ``output`` is ``None``, the plaintext is returned as ``bytes``.
212
+ Otherwise, ``None``.
213
+ """
214
+
215
+ if "decrypt" not in self._next:
216
+ raise TypeError("decrypt() cannot be called after encrypt()")
217
+ self._next = ["decrypt"]
218
+
219
+ if output is None:
220
+ plaintext = create_string_buffer(len(ciphertext))
221
+ else:
222
+ plaintext = output
223
+
224
+ if not is_writeable_buffer(output):
225
+ raise TypeError("output must be a bytearray or a writeable memoryview")
226
+
227
+ if len(ciphertext) != len(output):
228
+ raise ValueError("output must have the same length as the input"
229
+ " (%d bytes)" % len(plaintext))
230
+
231
+ result = raw_ofb_lib.OFB_decrypt(self._state.get(),
232
+ c_uint8_ptr(ciphertext),
233
+ c_uint8_ptr(plaintext),
234
+ c_size_t(len(ciphertext)))
235
+ if result:
236
+ raise ValueError("Error %d while decrypting in OFB mode" % result)
237
+
238
+ if output is None:
239
+ return get_raw_buffer(plaintext)
240
+ else:
241
+ return None
242
+
243
+
244
+ def _create_ofb_cipher(factory, **kwargs):
245
+ """Instantiate a cipher object that performs OFB encryption/decryption.
246
+
247
+ :Parameters:
248
+ factory : module
249
+ The underlying block cipher, a module from ``Cryptodome.Cipher``.
250
+
251
+ :Keywords:
252
+ iv : bytes/bytearray/memoryview
253
+ The IV to use for OFB.
254
+
255
+ IV : bytes/bytearray/memoryview
256
+ Alias for ``iv``.
257
+
258
+ Any other keyword will be passed to the underlying block cipher.
259
+ See the relevant documentation for details (at least ``key`` will need
260
+ to be present).
261
+ """
262
+
263
+ cipher_state = factory._create_base_cipher(kwargs)
264
+ iv = kwargs.pop("IV", None)
265
+ IV = kwargs.pop("iv", None)
266
+
267
+ if (None, None) == (iv, IV):
268
+ iv = get_random_bytes(factory.block_size)
269
+ if iv is not None:
270
+ if IV is not None:
271
+ raise TypeError("You must either use 'iv' or 'IV', not both")
272
+ else:
273
+ iv = IV
274
+
275
+ if len(iv) != factory.block_size:
276
+ raise ValueError("Incorrect IV length (it must be %d bytes long)" %
277
+ factory.block_size)
278
+
279
+ if kwargs:
280
+ raise TypeError("Unknown parameters for OFB: %s" % str(kwargs))
281
+
282
+ return OfbMode(cipher_state, iv)