summaryrefslogtreecommitdiff
path: root/python/genkat_aead.py
blob: 8b38d9b10c9a3d39aca89d61b20c2c56d20613e1 (plain)
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
#!/usr/bin/env python3

from lilliput import encrypt, decrypt, LilliputAeMode
from os import makedirs, path


MAX_MESSAGE_LENGTH = 32
MAX_ADATA_LENGTH = 32

CRYPTO_NPUBBYTES = 120//8


MODE_SUFFIXES = {
    LilliputAeMode.lilliput_1: 'i',
    LilliputAeMode.lilliput_2: 'ii'
}


def print_bstr(output, label, buf):
    print('{l} = {b}'.format(l=label, b=buf.hex().upper()), file=output)


def generate_test_vectors(mode, keylen):
    print('generating for', mode, keylen)

    directory = 'crypto_aead/lilliputae{mode}{keylen}v1'.format(
        mode=MODE_SUFFIXES[mode], keylen=keylen
    )

    makedirs(directory, exist_ok=True)

    output_path = path.join(
        directory, 'LWC_AEAD_KAT_{keylen}_120.txt'.format(keylen=keylen)
    )

    nonce = bytes(range(CRYPTO_NPUBBYTES))
    key = bytes(range(keylen//8))

    with open(output_path, 'w') as output:

        count = 1
        for mlen in range(MAX_MESSAGE_LENGTH+1):
            for adlen in range(MAX_ADATA_LENGTH+1):
                print('Count = {c}'.format(c=count), file=output)

                msg = bytes(range(mlen))
                ad = bytes(range(adlen))

                print_bstr(output, 'Key', key)
                print_bstr(output, 'Nonce', nonce)
                print_bstr(output, 'PT', msg)
                print_bstr(output, 'AD', ad)

                ct, tag = encrypt(msg, ad, key, nonce, mode)

                print_bstr(output, 'CT', ct+tag)

                decrypt(ct, tag, ad, key, nonce, mode)

                count+=1

                print(file=output)


if __name__ == '__main__':
    for mode in LilliputAeMode:
        for keylen in 128, 192, 256:
            generate_test_vectors(mode, keylen)