test.py 3.9 KB
Newer Older
Enrico Pozzobon committed
1 2
#!/usr/bin/env python3

Enrico Pozzobon committed
3
import re
Enrico Pozzobon committed
4 5 6 7 8 9 10
import os
import sys
import struct
from subprocess import Popen, PIPE


def main(argv):
Enrico Pozzobon committed
11 12 13
    if len(argv) < 3:
        print("Usage: test.py LWC_AEAD_KAT.txt program [arguments]")

14 15 16 17 18
    cmd = argv[2:]

    for attempt in range(3):
        print("beginning test %d of '%s' using test vectors '%s'" % (attempt, ' '.join(cmd), argv[1]))
        try:
19
            test(argv[1], cmd)
20 21
            print("TEST SUCCESSFUL")
            return 0
22

23 24 25 26 27 28 29 30 31 32 33
        except Exception as ex:
            print(str(ex))
            print("TEST FAILED")
        finally:
            sys.stdout.flush()
            sys.stderr.flush()

    return 1

def test(test_file, cmd):

Enrico Pozzobon committed
34
    test_file = open(test_file, 'r')
35
    p = Popen(cmd, bufsize=0, stdin=PIPE, stdout=PIPE)
Enrico Pozzobon committed
36 37 38 39 40 41 42

    def write(data):
        l = p.stdin.write(data)
        if len(data) != l:
            raise Exception("could not write %d bytes of data (put %d)" % (len(data), l))

    def read(l):
43 44
        if l == 0:
            return b""
Enrico Pozzobon committed
45
        data = p.stdout.read(l)
46 47
        if len(data) == 0:
            print("Unexpected end of stream", file=sys.stderr)
48
            #sys.exit(1)
Enrico Pozzobon committed
49 50 51 52 53 54 55 56 57 58 59 60 61 62
        if len(data) != l:
            raise Exception("could not read %d bytes of data (got %d)" % (l, len(data)))
        return data

    def submit(action, data):
        h = struct.pack("<BI", ord(action), len(data))
        write(h)
        write(data)

    def obtain():
        l = read(4)
        (l, ) = struct.unpack("<I", l)
        return read(l)

63 64 65
    output = read(14)
    if output != b"Hello, World!\n":
        raise Exception("Unexpected output: %s" % output)
66
    print("Ready")
Enrico Pozzobon committed
67

Enrico Pozzobon committed
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
    m = b""
    ad = b""
    k = b""
    npub = b""
    i = 0
    lineprog = re.compile(r"^\s*([A-Z]+)\s*=\s*(([0-9a-f])*)\s*$", re.IGNORECASE)
    for line in test_file.readlines():
        line = line.strip()
        res = lineprog.match(line)
        if line == "":
            print()
            print("Count = %d" % i)
            print("   m = %s" % m.hex())
            print("  ad = %s" % ad.hex())
            print("npub = %s" % npub.hex())
            print("   k = %s" % k.hex())
            print("   c = %s" % c.hex())

            submit('c', b"\0" * (len(m) + 32))
            submit('s', b"")

            submit('m', m)
            submit('a', ad)
            submit('k', k)
            submit('p', npub)
            write(b'e')
            write(b'C')
            output = obtain()
            print("   c = %s" % output.hex())
            if c != output:
                raise Exception("output of encryption is different from expected ciphertext")

            submit('m', b"\0" * len(c))
            submit('s', b"")

            submit('c', c)
            submit('a', ad)
            submit('k', k)
            submit('p', npub)
            write(b'd')
            write(b'M')
            output = obtain()
            print("   m = %s" % output.hex())
            if m != output:
                raise Exception("output of encryption is different from expected ciphertext")

114 115 116 117 118
            write(b'u')
            output = obtain()
            print("  untouched memory = %d" % struct.unpack("<I", output))
            break

Enrico Pozzobon committed
119 120 121 122 123 124 125 126 127 128 129 130 131 132
        elif res is not None:
            if res[1].lower() == 'count':
                i = int(res[2], 10)
            elif res[1].lower() == 'key':
                k = bytes.fromhex(res[2])
            elif res[1].lower() == 'nonce':
                npub = bytes.fromhex(res[2])
            elif res[1].lower() == 'pt':
                m = bytes.fromhex(res[2])
            elif res[1].lower() == 'ad':
                ad = bytes.fromhex(res[2])
            elif res[1].lower() == 'ct':
                c = bytes.fromhex(res[2])
            else:
Enrico Pozzobon committed
133
                raise Exception("ERROR: unparsed line in test vectors file: '%s'" % res)
Enrico Pozzobon committed
134
        else:
Enrico Pozzobon committed
135
            raise Exception("ERROR: unparsed line in test vectors file: '%s'" % line)
Enrico Pozzobon committed
136

Enrico Pozzobon committed
137 138
if __name__ == "__main__":
    sys.exit(main(sys.argv))