Revision 7b37f04e03e06569f352f0be81362c4860cb2ce5 authored by Matthias J. Kannwischer on 04 February 2020, 11:52:48 UTC, committed by GitHub on 04 February 2020, 11:52:48 UTC
* update three bears benchmarks for clean implementation

* update mupq
1 parent 2f3b8bd
Raw File
interface.py
import subprocess

import serial

from mupq import mupq


class M4Settings(mupq.PlatformSettings):
    #: Specify folders to include
    scheme_folders = [  # mupq.PlatformSettings.scheme_folders + [
        ('pqm4', 'crypto_kem', ''),
        ('pqm4', 'crypto_sign', ''),
        ('mupq', 'mupq/crypto_kem', ''),
        ('mupq', 'mupq/crypto_sign', ''),
        ('pqclean', 'mupq/pqclean/crypto_kem', "PQCLEAN"),
        ('pqclean', 'mupq/pqclean/crypto_sign', "PQCLEAN"),
    ]

    #: List of dicts, in each dict specify (Scheme class) attributes of the
    #: scheme with values, if all attributes match the scheme is skipped.
    skip_list = (
        {'scheme': 'falcon-1024-tree', 'implementation': 'opt-leaktime'},
        {'scheme': 'falcon-1024-tree', 'implementation': 'opt-ct'},
        {'scheme': 'frodokem640aes', 'implementation': 'clean'},
        {'scheme': 'frodokem640aes', 'implementation': 'opt'},
        {'scheme': 'frodokem976aes', 'implementation': 'clean'},
        {'scheme': 'frodokem976aes', 'implementation': 'opt'},
        {'scheme': 'frodokem1344aes', 'implementation': 'clean'},
        {'scheme': 'frodokem1344aes', 'implementation': 'opt'},
        {'scheme': 'frodokem640shake', 'implementation': 'clean'},
        {'scheme': 'frodokem976shake', 'implementation': 'clean'},
        {'scheme': 'frodokem976shake', 'implementation': 'opt'},
        {'scheme': 'frodokem1344shake', 'implementation': 'clean'},
        {'scheme': 'frodokem1344shake', 'implementation': 'opt'},
        {'scheme': 'mqdss-48', 'implementation': 'clean'},
        {'scheme': 'mqdss-64', 'implementation': 'clean'},
        {'scheme': 'ledakemlt12', 'implementation' : 'leaktime'},
        {'scheme': 'ledakemlt32', 'implementation' : 'leaktime'},
        {'scheme': 'ledakemlt52', 'implementation' : 'leaktime'},
        {'scheme': 'luov-79-76-341-chacha', 'implementation': 'ref'},
        {'scheme': 'luov-79-76-341-keccak', 'implementation': 'ref'},
        {'scheme': 'luov-7-83-283-chacha', 'implementation': 'ref'},
        {'scheme': 'luov-7-83-283-keccak', 'implementation': 'ref'},
        {'scheme': 'luov-7-110-374-chacha', 'implementation': 'ref'},
        {'scheme': 'luov-7-110-374-keccak', 'implementation': 'ref'},
        {'scheme': 'rainbowIa-classic', 'implementation': 'clean'},
        {'scheme': 'rainbowIa-cyclic', 'implementation': 'clean'},
        {'scheme': 'rainbowIa-cyclic-compressed', 'implementation': 'clean'},
        {'scheme': 'rainbowIIIc-classic', 'implementation': 'clean'},
        {'scheme': 'rainbowIIIc-cyclic', 'implementation': 'clean'},
        {'scheme': 'rainbowIIIc-cyclic-compressed', 'implementation': 'clean'},
        {'scheme': 'rainbowVc-classic', 'implementation': 'clean'},
        {'scheme': 'rainbowVc-cyclic', 'implementation': 'clean'},
        {'scheme': 'rainbowVc-cyclic-compressed', 'implementation': 'clean'},
        {'scheme': 'qtesla-p-I', 'implementation': 'clean'},
        {'scheme': 'qtesla-p-III', 'implementation': 'clean'},
    )


class M4(mupq.Platform):

    def __enter__(self):
        self._dev = serial.Serial("/dev/ttyUSB0", 115200, timeout=10)
        return super().__enter__()

    def __exit__(self,*args, **kwargs):
        self._dev.close()
        return super().__exit__(*args, **kwargs)

    def device(self):
        return self._dev

    def flash(self, binary_path):
        super().flash(binary_path)
        subprocess.check_call(
            ["st-flash", "--reset", "write", binary_path, "0x8000000"],
            stdout=subprocess.DEVNULL,
            stderr=subprocess.DEVNULL
        )
back to top