forked from meichlseder/pyascon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascon.py
executable file
·489 lines (406 loc) · 19.3 KB
/
ascon.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
#!/usr/bin/env python3
"""
Implementation of Ascon v1.2, an authenticated cipher and hash function
http://ascon.iaik.tugraz.at/
"""
debug = False
debugpermutation = False
# === Ascon hash/xof ===
def ascon_hash(message, variant="Ascon-Hash", hashlength=32):
"""
Ascon hash function and extendable-output function.
message: a bytes object of arbitrary length
variant: "Ascon-Hash", "Ascon-Hasha" (both with 256-bit output for 128-bit security), "Ascon-Xof", or "Ascon-Xofa" (both with arbitrary output length, security=min(128, bitlen/2))
hashlength: the requested output bytelength (must be 32 for variant "Ascon-Hash"; can be arbitrary for Ascon-Xof, but should be >= 32 for 128-bit security)
returns a bytes object containing the hash tag
"""
assert variant in ["Ascon-Hash", "Ascon-Hasha", "Ascon-Xof", "Ascon-Xofa"]
if variant in ["Ascon-Hash", "Ascon-Hasha"]: assert(hashlength == 32)
a = 12 # rounds
b = 8 if variant in ["Ascon-Hasha", "Ascon-Xofa"] else 12
rate = 8 # bytes
# Initialization
tagspec = int_to_bytes(256 if variant in ["Ascon-Hash", "Ascon-Hasha"] else 0, 4)
S = bytes_to_state(to_bytes([0, rate * 8, a, a-b]) + tagspec + zero_bytes(32))
if debug: printstate(S, "initial value:")
ascon_permutation(S, a)
if debug: printstate(S, "initialization:")
# Message Processing (Absorbing)
m_padding = to_bytes([0x80]) + zero_bytes(rate - (len(message) % rate) - 1)
m_padded = message + m_padding
# first s-1 blocks
for block in range(0, len(m_padded) - rate, rate):
S[0] ^= bytes_to_int(m_padded[block:block+8]) # rate=8
ascon_permutation(S, b)
# last block
block = len(m_padded) - rate
S[0] ^= bytes_to_int(m_padded[block:block+8]) # rate=8
if debug: printstate(S, "process message:")
# Finalization (Squeezing)
H = b""
ascon_permutation(S, a)
while len(H) < hashlength:
H += int_to_bytes(S[0], 8) # rate=8
ascon_permutation(S, b)
if debug: printstate(S, "finalization:")
return H[:hashlength]
# === Ascon MAC/PRF ===
def ascon_mac(key, message, variant="Ascon-Mac", taglength=16):
"""
Ascon message authentication code (MAC) and pseudorandom function (PRF).
key: a bytes object of size 16
message: a bytes object of arbitrary length (<= 16 for "Ascon-PrfShort")
variant: "Ascon-Mac", "Ascon-Maca" (both 128-bit output, arbitrarily long input), "Ascon-Prf", "Ascon-Prfa" (both arbitrarily long input and output), or "Ascon-PrfShort" (t-bit output for t<=128, m-bit input for m<=128)
taglength: the requested output bytelength l/8 (must be <=16 for variants "Ascon-Mac", "Ascon-Maca", and "Ascon-PrfShort", arbitrary for "Ascon-Prf", "Ascon-Prfa"; should be >= 16 for 128-bit security)
returns a bytes object containing the authentication tag
"""
assert variant in ["Ascon-Mac", "Ascon-Prf", "Ascon-Maca", "Ascon-Prfa", "Ascon-PrfShort"]
if variant in ["Ascon-Mac", "Ascon-Maca"]: assert(len(key) == 16 and taglength <= 16)
if variant in ["Ascon-Prf", "Ascon-Prfa"]: assert(len(key) == 16)
if variant == "Ascon-PrfShort": assert(len(key) == 16 and taglength <= 16 and len(message) <= 16)
a = 12 # rounds
b = 8 if variant in ["Ascon-Prfa", "Ascon-Maca"] else 12 # rounds
msgblocksize = 40 if variant in ["Ascon-Prfa", "Ascon-Maca"] else 32 # bytes (input rate for Mac, Prf)
rate = 16 # bytes (output rate)
if variant == "Ascon-PrfShort":
# Initialization + Message Processing (Absorbing)
IV = to_bytes([len(key) * 8, len(message)*8, a + 64, taglength * 8]) + zero_bytes(4)
S = bytes_to_state(IV + key + message + zero_bytes(16 - len(message)))
if debug: printstate(S, "initial value:")
ascon_permutation(S, a)
if debug: printstate(S, "process message:")
# Finalization (Squeezing)
T = int_to_bytes(S[3] ^ bytes_to_int(key[0:8]), 8) + int_to_bytes(S[4] ^ bytes_to_int(key[8:16]), 8)
return T[:taglength]
else: # Ascon-Prf, Ascon-Prfa, Ascon-Mac, Ascon-Maca
# Initialization
if variant in ["Ascon-Mac", "Ascon-Maca"]: tagspec = int_to_bytes(16*8, 4)
if variant in ["Ascon-Prf", "Ascon-Prfa"]: tagspec = int_to_bytes(0*8, 4)
S = bytes_to_state(to_bytes([len(key) * 8, rate * 8, a + 128, a-b]) + tagspec + key + zero_bytes(16))
if debug: printstate(S, "initial value:")
ascon_permutation(S, a)
if debug: printstate(S, "initialization:")
# Message Processing (Absorbing)
m_padding = to_bytes([0x80]) + zero_bytes(msgblocksize - (len(message) % msgblocksize) - 1)
m_padded = message + m_padding
# first s-1 blocks
for block in range(0, len(m_padded) - msgblocksize, msgblocksize):
S[0] ^= bytes_to_int(m_padded[block:block+8]) # msgblocksize=32 bytes
S[1] ^= bytes_to_int(m_padded[block+8:block+16])
S[2] ^= bytes_to_int(m_padded[block+16:block+24])
S[3] ^= bytes_to_int(m_padded[block+24:block+32])
if variant in ["Ascon-Prfa", "Ascon-Maca"]:
S[4] ^= bytes_to_int(m_padded[block+32:block+40])
ascon_permutation(S, b)
# last block
block = len(m_padded) - msgblocksize
S[0] ^= bytes_to_int(m_padded[block:block+8]) # msgblocksize=32 bytes
S[1] ^= bytes_to_int(m_padded[block+8:block+16])
S[2] ^= bytes_to_int(m_padded[block+16:block+24])
S[3] ^= bytes_to_int(m_padded[block+24:block+32])
if variant in ["Ascon-Prfa", "Ascon-Maca"]:
S[4] ^= bytes_to_int(m_padded[block+32:block+40])
S[4] ^= 1
if debug: printstate(S, "process message:")
# Finalization (Squeezing)
T = b""
ascon_permutation(S, a)
while len(T) < taglength:
T += int_to_bytes(S[0], 8) # rate=16
T += int_to_bytes(S[1], 8)
ascon_permutation(S, b)
if debug: printstate(S, "finalization:")
return T[:taglength]
# === Ascon AEAD encryption and decryption ===
def ascon_encrypt(key, nonce, associateddata, plaintext, variant="Ascon-128"):
"""
Ascon encryption.
key: a bytes object of size 16 (for Ascon-128, Ascon-128a; 128-bit security) or 20 (for Ascon-80pq; 128-bit security)
nonce: a bytes object of size 16 (must not repeat for the same key!)
associateddata: a bytes object of arbitrary length
plaintext: a bytes object of arbitrary length
variant: "Ascon-128", "Ascon-128a", or "Ascon-80pq" (specifies key size, rate and number of rounds)
returns a bytes object of length len(plaintext)+16 containing the ciphertext and tag
"""
assert variant in ["Ascon-128", "Ascon-128a", "Ascon-80pq"]
if variant in ["Ascon-128", "Ascon-128a"]: assert(len(key) == 16 and len(nonce) == 16)
if variant == "Ascon-80pq": assert(len(key) == 20 and len(nonce) == 16)
S = [0, 0, 0, 0, 0]
k = len(key) * 8 # bits
a = 12 # rounds
b = 8 if variant == "Ascon-128a" else 6 # rounds
rate = 16 if variant == "Ascon-128a" else 8 # bytes
ascon_initialize(S, k, rate, a, b, key, nonce)
ascon_process_associated_data(S, b, rate, associateddata)
ciphertext = ascon_process_plaintext(S, b, rate, plaintext)
tag = ascon_finalize(S, rate, a, key)
return ciphertext + tag
def ascon_decrypt(key, nonce, associateddata, ciphertext, variant="Ascon-128"):
"""
Ascon decryption.
key: a bytes object of size 16 (for Ascon-128, Ascon-128a; 128-bit security) or 20 (for Ascon-80pq; 128-bit security)
nonce: a bytes object of size 16 (must not repeat for the same key!)
associateddata: a bytes object of arbitrary length
ciphertext: a bytes object of arbitrary length (also contains tag)
variant: "Ascon-128", "Ascon-128a", or "Ascon-80pq" (specifies key size, rate and number of rounds)
returns a bytes object containing the plaintext or None if verification fails
"""
assert variant in ["Ascon-128", "Ascon-128a", "Ascon-80pq"]
if variant in ["Ascon-128", "Ascon-128a"]: assert(len(key) == 16 and len(nonce) == 16 and len(ciphertext) >= 16)
if variant == "Ascon-80pq": assert(len(key) == 20 and len(nonce) == 16 and len(ciphertext) >= 16)
S = [0, 0, 0, 0, 0]
k = len(key) * 8 # bits
a = 12 # rounds
b = 8 if variant == "Ascon-128a" else 6 # rounds
rate = 16 if variant == "Ascon-128a" else 8 # bytes
ascon_initialize(S, k, rate, a, b, key, nonce)
ascon_process_associated_data(S, b, rate, associateddata)
plaintext = ascon_process_ciphertext(S, b, rate, ciphertext[:-16])
tag = ascon_finalize(S, rate, a, key)
if tag == ciphertext[-16:]:
return plaintext
else:
return None
# === Ascon AEAD building blocks ===
def ascon_initialize(S, k, rate, a, b, key, nonce):
"""
Ascon initialization phase - internal helper function.
S: Ascon state, a list of 5 64-bit integers
k: key size in bits
rate: block size in bytes (8 for Ascon-128, Ascon-80pq; 16 for Ascon-128a)
a: number of initialization/finalization rounds for permutation
b: number of intermediate rounds for permutation
key: a bytes object of size 16 (for Ascon-128, Ascon-128a; 128-bit security) or 20 (for Ascon-80pq; 128-bit security)
nonce: a bytes object of size 16
returns nothing, updates S
"""
iv_zero_key_nonce = to_bytes([k, rate * 8, a, b] + (20-len(key))*[0]) + key + nonce
S[0], S[1], S[2], S[3], S[4] = bytes_to_state(iv_zero_key_nonce)
if debug: printstate(S, "initial value:")
ascon_permutation(S, a)
zero_key = bytes_to_state(zero_bytes(40-len(key)) + key)
S[0] ^= zero_key[0]
S[1] ^= zero_key[1]
S[2] ^= zero_key[2]
S[3] ^= zero_key[3]
S[4] ^= zero_key[4]
if debug: printstate(S, "initialization:")
def ascon_process_associated_data(S, b, rate, associateddata):
"""
Ascon associated data processing phase - internal helper function.
S: Ascon state, a list of 5 64-bit integers
b: number of intermediate rounds for permutation
rate: block size in bytes (8 for Ascon-128, 16 for Ascon-128a)
associateddata: a bytes object of arbitrary length
returns nothing, updates S
"""
if len(associateddata) > 0:
a_zeros = rate - (len(associateddata) % rate) - 1
a_padding = to_bytes([0x80] + [0 for i in range(a_zeros)])
a_padded = associateddata + a_padding
for block in range(0, len(a_padded), rate):
S[0] ^= bytes_to_int(a_padded[block:block+8])
if rate == 16:
S[1] ^= bytes_to_int(a_padded[block+8:block+16])
ascon_permutation(S, b)
S[4] ^= 1
if debug: printstate(S, "process associated data:")
def ascon_process_plaintext(S, b, rate, plaintext):
"""
Ascon plaintext processing phase (during encryption) - internal helper function.
S: Ascon state, a list of 5 64-bit integers
b: number of intermediate rounds for permutation
rate: block size in bytes (8 for Ascon-128, Ascon-80pq; 16 for Ascon-128a)
plaintext: a bytes object of arbitrary length
returns the ciphertext (without tag), updates S
"""
p_lastlen = len(plaintext) % rate
p_padding = to_bytes([0x80] + (rate-p_lastlen-1)*[0x00])
p_padded = plaintext + p_padding
# first t-1 blocks
ciphertext = to_bytes([])
for block in range(0, len(p_padded) - rate, rate):
if rate == 8:
S[0] ^= bytes_to_int(p_padded[block:block+8])
ciphertext += int_to_bytes(S[0], 8)
elif rate == 16:
S[0] ^= bytes_to_int(p_padded[block:block+8])
S[1] ^= bytes_to_int(p_padded[block+8:block+16])
ciphertext += (int_to_bytes(S[0], 8) + int_to_bytes(S[1], 8))
ascon_permutation(S, b)
# last block t
block = len(p_padded) - rate
if rate == 8:
S[0] ^= bytes_to_int(p_padded[block:block+8])
ciphertext += int_to_bytes(S[0], 8)[:p_lastlen]
elif rate == 16:
S[0] ^= bytes_to_int(p_padded[block:block+8])
S[1] ^= bytes_to_int(p_padded[block+8:block+16])
ciphertext += (int_to_bytes(S[0], 8)[:min(8,p_lastlen)] + int_to_bytes(S[1], 8)[:max(0,p_lastlen-8)])
if debug: printstate(S, "process plaintext:")
return ciphertext
def ascon_process_ciphertext(S, b, rate, ciphertext):
"""
Ascon ciphertext processing phase (during decryption) - internal helper function.
S: Ascon state, a list of 5 64-bit integers
b: number of intermediate rounds for permutation
rate: block size in bytes (8 for Ascon-128, Ascon-80pq; 16 for Ascon-128a)
ciphertext: a bytes object of arbitrary length
returns the plaintext, updates S
"""
c_lastlen = len(ciphertext) % rate
c_padded = ciphertext + zero_bytes(rate - c_lastlen)
# first t-1 blocks
plaintext = to_bytes([])
for block in range(0, len(c_padded) - rate, rate):
if rate == 8:
Ci = bytes_to_int(c_padded[block:block+8])
plaintext += int_to_bytes(S[0] ^ Ci, 8)
S[0] = Ci
elif rate == 16:
Ci = (bytes_to_int(c_padded[block:block+8]), bytes_to_int(c_padded[block+8:block+16]))
plaintext += (int_to_bytes(S[0] ^ Ci[0], 8) + int_to_bytes(S[1] ^ Ci[1], 8))
S[0] = Ci[0]
S[1] = Ci[1]
ascon_permutation(S, b)
# last block t
block = len(c_padded) - rate
if rate == 8:
c_padding1 = (0x80 << (rate-c_lastlen-1)*8)
c_mask = (0xFFFFFFFFFFFFFFFF >> (c_lastlen*8))
Ci = bytes_to_int(c_padded[block:block+8])
plaintext += int_to_bytes(Ci ^ S[0], 8)[:c_lastlen]
S[0] = Ci ^ (S[0] & c_mask) ^ c_padding1
elif rate == 16:
c_lastlen_word = c_lastlen % 8
c_padding1 = (0x80 << (8-c_lastlen_word-1)*8)
c_mask = (0xFFFFFFFFFFFFFFFF >> (c_lastlen_word*8))
Ci = (bytes_to_int(c_padded[block:block+8]), bytes_to_int(c_padded[block+8:block+16]))
plaintext += (int_to_bytes(S[0] ^ Ci[0], 8) + int_to_bytes(S[1] ^ Ci[1], 8))[:c_lastlen]
if c_lastlen < 8:
S[0] = Ci[0] ^ (S[0] & c_mask) ^ c_padding1
else:
S[0] = Ci[0]
S[1] = Ci[1] ^ (S[1] & c_mask) ^ c_padding1
if debug: printstate(S, "process ciphertext:")
return plaintext
def ascon_finalize(S, rate, a, key):
"""
Ascon finalization phase - internal helper function.
S: Ascon state, a list of 5 64-bit integers
rate: block size in bytes (8 for Ascon-128, Ascon-80pq; 16 for Ascon-128a)
a: number of initialization/finalization rounds for permutation
key: a bytes object of size 16 (for Ascon-128, Ascon-128a; 128-bit security) or 20 (for Ascon-80pq; 128-bit security)
returns the tag, updates S
"""
assert(len(key) in [16,20])
S[rate//8+0] ^= bytes_to_int(key[0:8])
S[rate//8+1] ^= bytes_to_int(key[8:16])
S[rate//8+2] ^= bytes_to_int(key[16:] + zero_bytes(24-len(key)))
ascon_permutation(S, a)
S[3] ^= bytes_to_int(key[-16:-8])
S[4] ^= bytes_to_int(key[-8:])
tag = int_to_bytes(S[3], 8) + int_to_bytes(S[4], 8)
if debug: printstate(S, "finalization:")
return tag
# === Ascon permutation ===
def ascon_permutation(S, rounds=1):
"""
Ascon core permutation for the sponge construction - internal helper function.
S: Ascon state, a list of 5 64-bit integers
rounds: number of rounds to perform
returns nothing, updates S
"""
assert(rounds <= 12)
if debugpermutation: printwords(S, "permutation input:")
for r in range(12-rounds, 12):
# --- add round constants ---
S[2] ^= (0xf0 - r*0x10 + r*0x1)
if debugpermutation: printwords(S, "round constant addition:")
# --- substitution layer ---
S[0] ^= S[4]
S[4] ^= S[3]
S[2] ^= S[1]
T = [(S[i] ^ 0xFFFFFFFFFFFFFFFF) & S[(i+1)%5] for i in range(5)]
for i in range(5):
S[i] ^= T[(i+1)%5]
S[1] ^= S[0]
S[0] ^= S[4]
S[3] ^= S[2]
S[2] ^= 0XFFFFFFFFFFFFFFFF
if debugpermutation: printwords(S, "substitution layer:")
# --- linear diffusion layer ---
S[0] ^= rotr(S[0], 19) ^ rotr(S[0], 28)
S[1] ^= rotr(S[1], 61) ^ rotr(S[1], 39)
S[2] ^= rotr(S[2], 1) ^ rotr(S[2], 6)
S[3] ^= rotr(S[3], 10) ^ rotr(S[3], 17)
S[4] ^= rotr(S[4], 7) ^ rotr(S[4], 41)
if debugpermutation: printwords(S, "linear diffusion layer:")
# === helper functions ===
def get_random_bytes(num):
import os
return to_bytes(os.urandom(num))
def zero_bytes(n):
return n * b"\x00"
def to_bytes(l): # where l is a list or bytearray or bytes
return bytes(bytearray(l))
def bytes_to_int(bytes):
return sum([bi << ((len(bytes) - 1 - i)*8) for i, bi in enumerate(to_bytes(bytes))])
def bytes_to_state(bytes):
return [bytes_to_int(bytes[8*w:8*(w+1)]) for w in range(5)]
def int_to_bytes(integer, nbytes):
return to_bytes([(integer >> ((nbytes - 1 - i) * 8)) % 256 for i in range(nbytes)])
def rotr(val, r):
return (val >> r) | ((val & (1<<r)-1) << (64-r))
def bytes_to_hex(b):
return b.hex()
#return "".join(x.encode('hex') for x in b)
def printstate(S, description=""):
print(" " + description)
print(" ".join(["{s:016x}".format(s=s) for s in S]))
def printwords(S, description=""):
print(" " + description)
print("\n".join([" x{i}={s:016x}".format(**locals()) for i, s in enumerate(S)]))
# === some demo if called directly ===
def demo_print(data):
maxlen = max([len(text) for (text, val) in data])
for text, val in data:
print("{text}:{align} 0x{val} ({length} bytes)".format(text=text, align=((maxlen - len(text)) * " "), val=bytes_to_hex(val), length=len(val)))
def demo_aead(variant):
assert variant in ["Ascon-128", "Ascon-128a", "Ascon-80pq"]
keysize = 20 if variant == "Ascon-80pq" else 16
print("=== demo encryption using {variant} ===".format(variant=variant))
# choose a cryptographically strong random key and a nonce that never repeats for the same key:
key = get_random_bytes(keysize) # zero_bytes(keysize)
nonce = get_random_bytes(16) # zero_bytes(16)
associateddata = b"ASCON"
plaintext = b"ascon"
ciphertext = ascon_encrypt(key, nonce, associateddata, plaintext, variant)
receivedplaintext = ascon_decrypt(key, nonce, associateddata, ciphertext, variant)
if receivedplaintext == None: print("verification failed!")
demo_print([("key", key),
("nonce", nonce),
("plaintext", plaintext),
("ass.data", associateddata),
("ciphertext", ciphertext[:-16]),
("tag", ciphertext[-16:]),
("received", receivedplaintext),
])
def demo_hash(variant="Ascon-Hash", hashlength=32):
assert variant in ["Ascon-Xof", "Ascon-Hash", "Ascon-Xofa", "Ascon-Hasha"]
print("=== demo hash using {variant} ===".format(variant=variant))
message = b"ascon"
tag = ascon_hash(message, variant, hashlength)
demo_print([("message", message), ("tag", tag)])
def demo_mac(variant="Ascon-Mac", taglength=16):
assert variant in ["Ascon-Mac", "Ascon-Prf", "Ascon-Maca", "Ascon-Prfa", "Ascon-PrfShort"]
keysize = 16
print("=== demo MAC using {variant} ===".format(variant=variant))
key = get_random_bytes(keysize)
message = b"ascon"
tag = ascon_mac(key, message, variant)
demo_print([("key", key), ("message", message), ("tag", tag)])
if __name__ == "__main__":
demo_aead("Ascon-128")
demo_hash("Ascon-Hash")
demo_mac("Ascon-Mac")