Skip to content

Latest commit

 

History

History
357 lines (308 loc) · 27.4 KB

README.md

File metadata and controls

357 lines (308 loc) · 27.4 KB

pqm4

Post-quantum crypto library for the ARM Cortex-M4

Introduction

The pqm4 library, benchmarking and testing framework started as a result of the PQCRYPTO project funded by the European Commission in the H2020 program. It currently contains implementations of 10 post-quantum key-encapsulation mechanisms and 3 post-quantum signature schemes targeting the ARM Cortex-M4 family of microcontrollers. The design goals of the library are to offer

  • a simple build system that generates an individual static library for each implementation of each scheme, which can simply be linked into any software project;
  • automated functional testing on a widely available development board;
  • automated generation of test vectors and comparison against output of a reference implementation running host-side (i.e., on the computer the development board is connected to);
  • automated benchmarking for speed and stack usage; and
  • easy integration of new schemes and implementations into the framework.

Schemes included in pqm4

Currently pqm4 contains implementations of the following post-quantum KEMs:

Currently pqm4 contains implementations of the following post-quantum signature schemes:

The schemes were selected according to the following criteria:

  • Restrict to NIST round 1 candidates.
  • First focus on schemes and implementations resulting from the PQCRYPTO project.
  • Choose parameters targeting NIST security level 3 by default, but
    • choose parameters targeting a higher security level if there are no level-3 parameters, and
    • choose parameters targeting a lower security level if level-3 parameters exceed the development board's resources (in particular RAM).
  • Restrict to schemes that have at least implementation of one parameter set that does not exceed the development board's resources.

For most of the schemes there are multiple implementations. The naming scheme for these implementations is as follows:

  • ref: the reference implementation submitted to NIST,
  • opt: an optimized implementation in plain C (e.g., the optimized implementation submitted to NIST),
  • m4: an implementation with Cortex-M4 specific optimizations (typically in assembly).

Setup/Installation

The testing and benchmarking framework of pqm4 targets the STM32F4 Discovery board featuring an ARM Cortex-M4 CPU, 1MB of Flash, and 192KB of RAM. Connecting the development to the host computer requires a mini-USB cable and a USB-TTL converter together with a 2-pin dupont / jumper cable.

Installing the ARM toolchain

The pqm4 build system assumes that you have the arm-none-eabi toolchain toolchain installed. On most Linux systems, the correct toolchain gets installed when you install the arm-none-eabi-gcc (or gcc-arm-none-eabi) package.
On some Linux distributions, you will also have to explicitly install libnewlib-arm-none-eabi .

Installing stlink

To flash binaries onto the development board, pqm4 is using stlink. Depending on your operating system, stlink may be available in your package manager -- if not, please refer to the stlink Github page for instructions on how to compile it from source (in that case, be careful to use libusb-1.0.0-dev, not libusb-0.1).

Installing pyserial

The host-side Python code requires the pyserial module. Your package repository might offer python-serial or python-pyserial directly (as of writing, this is the case for Ubuntu, Debian and Arch). Alternatively, this can be easily installed from PyPA by calling pip install -r requirements.txt (or pip3, depending on your system). If you do not have pip installed yet, you can typically find it as python3-pip using your package manager.

Connecting the board to the host

Connect the board to your host machine using the mini-USB port. This provides it with power, and allows you to flash binaries onto the board. It should show up in lsusb as STMicroelectronics ST-LINK/V2.

If you are using a UART-USB connector that has a PL2303 chip on board (which appears to be the most common), the driver should be loaded in your kernel by default. If it is not, it is typically called pl2303. On macOS, you will still need to install it (and reboot). When you plug in the device, it should show up as Prolific Technology, Inc. PL2303 Serial Port when you type lsusb.

Using dupont / jumper cables, connect the TX/TXD pin of the USB connector to the PA3 pin on the board, and connect RX/RXD to PA2. Depending on your setup, you may also want to connect the GND pins.

Downloading pqm4 and libopencm3

Finally, obtain the pqm4 library and the submodule libopencm3:

git clone https://github.com/mupq/pqm4.git
cd pqm4
git submodule init
git submodule update
cd libopencm3 && make

API documentation

The pqm4 library uses the NIST API. It is mandated for all included schemes.

KEMs need to define CRYPTO_SECRETKEYBYTES, CRYPTO_PUBLICKEYBYTES, CRYPTO_BYTES, and CRYPTO_CIPHERTEXTBYTES and implement

int crypto_kem_keypair(unsigned char *pk, unsigned char *sk);
int crypto_kem_enc(unsigned char *ct, unsigned char *ss, const unsigned char *pk);
int crypto_kem_dec(unsigned char *ss, const unsigned char *ct, const unsigned char *sk);

Signature schemes need to define CRYPTO_SECRETKEYBYTES, CRYPTO_PUBLICKEYBYTES, and CRYPTO_BYTES and implement

int crypto_sign_keypair(unsigned char *pk, unsigned char *sk);
int crypto_sign(unsigned char *sm, unsigned long long *smlen, 
		const unsigned char *msg, unsigned long long len, 
                const unsigned char *sk);
int crypto_sign_open(unsigned char *m, unsigned long long *mlen,
                     const unsigned char *sm, unsigned long long smlen,
                     const unsigned char *pk);

Running tests and benchmarks

Executing make compiles five binaries for each implemenation which can be used to test and benchmark the schemes. For example, for the reference implementation of NewHope-1024-CCA-KEM the following binaries are assembled:

  • bin/crypto_kem_newhope1024cca_ref_test.bin tests if the scheme works as expected. For KEMs this tests if Alice and Bob derive the same shared key and for signature schemes it tests if a generated signature can be verified correctly. Several failure cases are also checked, see crypto_kem/test.c and crypto_sign/test.c for details.
  • bin/crypto_kem_newhope1024cca_ref_speed.bin measures the runtime of crypto_kem_keypair, crypto_kem_enc, and crypto_kem_dec for KEMs and crypto_sign_keypair, crypto_sign, and crypto_sign_open for signatures. See crypto_kem/speed.c and crypto_sign/speed.c.
  • bin/crypto_kem_newhope1024cca_ref_stack.bin measures the stack consumption of each of the procedures involved. The memory allocated outside of the procedures (e.g., public keys, private keys, ciphertexts, signatures) is not included. See crypto_kem/stack.c and crypto_sign/stack.c.
  • bin/crypto_kem_newhope1024cca_ref_testvectors.bin uses a deterministic random number generator to generate testvectors for the implementation. These can be used to cross-check different implemenatations of the same scheme. See crypto_kem/testvectors.c and crypto_sign/testvectors.c.
  • bin-host/crypto_kem_newhope1024cca_ref_testvectors uses the same deterministic random number generator to create the testvectors on your host. See crypto_kem/testvectors-host.c and crypto_sign/testvectors-host.c.

The binaries can be flashed to your board using st-flash, e.g., st-flash write bin/crypto_kem_newhope1024cca_ref_test.bin 0x8000000. To receive the output, run python3 hostside/host_unidirectional.py.

The pqm4 framework automates testing and benchmarking for all schemes using Python3 scripts:

  • python3 test.py: flashes all test binaries to the boards and checks that no errors occur.
  • python3 testvectors.py: flashes all testvector binaries to the boards and writes the testvectors to testvectors/. Additionally, it executes the reference implementations on your host machine. Afterwards, it checks the testvectors of different implementations of the same scheme for consistency.
  • python3 benchmarks.py: flashes the stack and speed binaries and writes the results to benchmarks/stack/ and benchmarks/speed/. You may want to execute this several times for certain schemes for which the execution time varies significantly.

In case you don't want to include all schemes, pass a list of schemes you want to include to any of the scripts, e.g., python3 test.py newhope1024cca sphincs-shake256-128s.

The benchmark results (in benchmarks/) created by python3 benchmarks.py can be automatically converted to the markdown table below using python3 benchmarks_to_md.py

Benchmarks

The tables below list cycle counts and stack usage of the implementations currently included in pqm4. All cycle counts were obtained at 24MHz to avoid wait cycles due to the speed of the memory controller. For most schemes we report minimum, maxium, and average cycle counts of 100 executions. For schemes with no cycle count variation we only did 10 executions. For some particularly slow schemes we reduce the number of executions; the number of executions is reported in parantheses.

The following numbers were obtained with arm-none-eabi-gcc 8.2.0 and libopencm3 @8b1ac58

Speed Evaluation

Key Encapsulation Schemes

scheme implementation key generation [cycles] encapsulation [cycles] decapsulation [cycles]
frodo640-cshake (100 executions) opt AVG: 94,119,511
MIN: 94,119,511
MAX: 94,119,511
AVG: 106,992,266
MIN: 106,992,266
MAX: 106,992,266
AVG: 107,505,670
MIN: 107,505,670
MAX: 107,505,670
kindi256342 (100 executions) m4 AVG: 1,009,667
MIN: 1,009,667
MAX: 1,009,667
AVG: 1,365,402
MIN: 1,365,402
MAX: 1,365,402
AVG: 1,563,475
MIN: 1,563,333
MAX: 1,563,612
kindi256342 (100 executions) ref AVG: 21,794,303
MIN: 21,777,419
MAX: 21,812,486
AVG: 28,175,792
MIN: 28,155,214
MAX: 28,202,159
AVG: 37,128,741
MIN: 37,106,492
MAX: 37,153,861
kyber768 (100 executions) m4 AVG: 1,200,291
MIN: 1,199,710
MAX: 1,200,930
AVG: 1,446,284
MIN: 1,445,732
MAX: 1,446,891
AVG: 1,477,365
MIN: 1,476,813
MAX: 1,477,972
kyber768 (100 executions) ref AVG: 1,381,942
MIN: 1,381,440
MAX: 1,382,660
AVG: 1,748,054
MIN: 1,747,577
MAX: 1,748,736
AVG: 1,904,113
MIN: 1,903,637
MAX: 1,904,796
newhope1024cca (100 executions) m4 AVG: 1,243,729
MIN: 1,243,497
MAX: 1,244,041
AVG: 1,963,184
MIN: 1,962,952
MAX: 1,963,495
AVG: 1,978,982
MIN: 1,978,748
MAX: 1,979,293
newhope1024cca (100 executions) ref AVG: 1,508,532
MIN: 1,508,149
MAX: 1,508,917
AVG: 2,380,428
MIN: 2,380,046
MAX: 2,380,813
AVG: 2,536,341
MIN: 2,535,957
MAX: 2,536,725
ntruhrss701 (10 executions) m4 AVG: 161,790,477
MIN: 161,790,477
MAX: 161,790,477
AVG: 431,668
MIN: 431,668
MAX: 431,668
AVG: 863,053
MIN: 863,053
MAX: 863,053
ntruhrss701 (10 executions) ref AVG: 205,156,102
MIN: 205,156,102
MAX: 205,156,102
AVG: 5,165,764
MIN: 5,165,764
MAX: 5,165,764
AVG: 15,067,346
MIN: 15,067,346
MAX: 15,067,346
ntru-kem-743 (100 executions) m4 AVG: 5,663,354
MIN: 5,423,326
MAX: 5,807,366
AVG: 1,655,116
MIN: 1,623,221
MAX: 1,699,419
AVG: 1,904,374
MIN: 1,869,697
MAX: 1,935,083
ntru-kem-743 (100 executions) ref AVG: 59,815,371
MIN: 59,544,772
MAX: 60,057,520
AVG: 7,539,756
MIN: 7,512,835
MAX: 7,578,878
AVG: 14,229,462
MIN: 14,211,760
MAX: 14,276,253
rlizard-1024-11 (100 executions) m4 AVG: 537,225
MIN: 536,470
MAX: 538,256
AVG: 1,358,408
MIN: 1,358,259
MAX: 1,358,544
AVG: 1,739,881
MIN: 1,739,729
MAX: 1,740,012
rlizard-1024-11 (100 executions) ref AVG: 26,423,327
MIN: 26,422,421
MAX: 26,424,264
AVG: 32,156,356
MIN: 32,155,918
MAX: 32,183,476
AVG: 53,181,411
MIN: 53,180,957
MAX: 53,208,533
saber (10 executions) m4 AVG: 949,001
MIN: 949,001
MAX: 949,001
AVG: 1,231,832
MIN: 1,231,832
MAX: 1,231,832
AVG: 1,259,810
MIN: 1,259,810
MAX: 1,259,810
saber (10 executions) ref AVG: 6,530,112
MIN: 6,530,112
MAX: 6,530,112
AVG: 8,683,792
MIN: 8,683,792
MAX: 8,683,792
AVG: 10,580,822
MIN: 10,580,822
MAX: 10,580,822
sikep751 (1 executions) ref AVG: 3,525,565,432
MIN: 3,525,565,432
MAX: 3,525,565,432
AVG: 5,712,676,148
MIN: 5,712,676,148
MAX: 5,712,676,148
AVG: 6,139,132,015
MIN: 6,139,132,015
MAX: 6,139,132,015
sntrup4591761 (10 executions) ref AVG: 145,371,484
MIN: 145,371,484
MAX: 145,371,484
AVG: 10,331,556
MIN: 10,331,556
MAX: 10,331,556
AVG: 30,335,175
MIN: 30,335,175
MAX: 30,335,175

Signature Schemes

scheme implementation key generation [cycles] sign [cycles] verify [cycles]
dilithium (100 executions) ref AVG: 2,788,880
MIN: 2,787,512
MAX: 2,789,574
AVG: 14,561,389
MIN: 5,042,770
MAX: 56,392,860
AVG: 3,064,201
MIN: 3,063,784
MAX: 3,064,698
qTesla-I (100 executions) ref AVG: 17,545,901
MIN: 7,826,320
MAX: 51,706,602
AVG: 6,317,445
MIN: 1,509,322
MAX: 25,051,076
AVG: 1,059,370
MIN: 1,051,846
MAX: 1,085,445
qTesla-III-size (100 executions) ref AVG: 58,227,852
MIN: 22,220,409
MAX: 159,316,030
AVG: 19,869,370
MIN: 3,457,790
MAX: 89,902,537
AVG: 2,297,530
MIN: 2,292,479
MAX: 2,325,980
qTesla-III-speed (100 executions) ref AVG: 30,720,411
MIN: 19,963,698
MAX: 151,901,043
AVG: 11,987,079
MIN: 3,422,459
MAX: 46,186,863
AVG: 2,225,296
MIN: 2,216,600
MAX: 2,258,153
sphincs-shake256-128s (1 executions) ref AVG: 4,439,815,208
MIN: 4,439,815,208
MAX: 4,439,815,208
AVG: 61,665,898,904
MIN: 61,665,898,904
MAX: 61,665,898,904
AVG: 72,326,283
MIN: 72,326,283
MAX: 72,326,283

Memory Evaluation

Key Encapsulation Schemes

scheme implementation key generation [bytes] encapsulation [bytes] decapsulation [bytes]
frodo640-cshake opt 36,528 58,240 68,608
kindi256342 m4 44,264 55,392 64,376
kindi256342 ref 59,864 71,000 84,096
kyber768 m4 10,544 13,720 14,880
kyber768 ref 10,544 13,720 14,880
newhope1024cca m4 11,152 17,448 19,648
newhope1024cca ref 11,152 17,448 19,648
ntru-kem-743 m4 25,320 23,808 28,472
ntru-kem-743 ref 14,148 13,372 18,036
ntruhrss701 m4 23,396 19,492 22,140
ntruhrss701 ref 10,020 8,956 10,204
rlizard-1024-11 m4 27,720 33,328 35,448
rlizard-1024-11 ref 4,272 10,532 12,636
saber m4 13,248 15,528 16,624
saber ref 12,616 14,896 15,992
sikep751 ref 11,528 11,688 12,240
sntrup4591761 ref 14,608 7,264 12,544

Signature Schemes

scheme implementation key generation [bytes] sign [bytes] verify [bytes]
dilithium ref 50,864 86,720 54,904
qTesla-I ref 22,480 29,336 23,096
qTesla-III-size ref 43,984 58,116 45,732
qTesla-III-speed ref 43,992 58,112 45,712
sphincs-shake256-128s ref 2,904 3,032 10,768

Adding new schemes and implementations

The pqm4 build system is designed to make it very easy to add new schemes and implementations, if these implementations follow the NIST/SUPERCOP API. In the following we consider the example of adding the reference implementation of NewHope-512-CPA-KEM to pqm4:

  1. Create a subdirectory for the new scheme under crypto_kem/; in the following we assume that this subdirectory is called newhope512cpa.

  2. Create a subdirectory ref under crypto_kem/newhope512cpa/.

  3. Copy all files of the reference implementation into this new subdirectory crypto_kem/newhope512cpa/ref/, except for the file implementing the randombytes function (typically PQCgenKAT_kem.c).

  4. In the subdirectory crypto_kem/newhope512cpa/ref/ write a Makefile with default target libpqm4.a. For our example, this Makefile could look as follows:

    CC      = arm-none-eabi-gcc
    CFLAGS  = -Wall -Wextra -O3 -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16
    AR      = arm-none-eabi-gcc-ar 
    
    OBJECTS = cpapke.o kem.o ntt.o poly.o precomp.o reduce.o verify.o
    HEADERS = api.h cpapke.h ntt.h params.h poly.h reduce.h verify.h 
    
    libpqm4.a: $(OBJECTS)
      $(AR) rcs $@ $(OBJECTS)
    
    %.o: %.c $(HEADERS)
      $(CC) -I$(INCPATH) $(CFLAGS) -c -o $@ $<

    Note that this setup easily allows each implementation of each scheme to be built with different compiler flags. Also note the -I$(INCPATH) flag. The variable $(INCPATH) is provided externally from the pqm4 build system and provides access to header files defining the randombytes function and FIPS202 (Keccak) functions (see below).

  5. If the implementation added is a pure C implementation that can also run on the host, then add an additional target called libpqhost.ato the Makefile, for example as follows:

    CC_HOST      = gcc
    CFLAGS_HOST  = -Wall -Wextra -O3
    AR_HOST      = gcc-ar
    OBJECTS_HOST = $(patsubst %.o,%_host.o,$(OBJECTS))
    
    libpqhost.a: $(OBJECTS_HOST)
      $(AR_HOST) rcs $@ $(OBJECTS_HOST)
    
    %_host.o: %.c $(HEADERS)
      $(CC_HOST) -I$(INCPATH) $(CFLAGS_HOST) -c -o $@ $<
  6. For some schemes you may have a reference implementation that exceeds the resource limits of the STM32F4 Discovery board. This reference implementation is still useful for pqm4, because it can run on the host to generate test vectors for comparison. If the implementation you're adding is such a host-side-only reference implementation, place a file called .m4ignore in the subdirectory containing the implementation. In that case the Makefile is not required to contain the libpqm4 target.

The procedure for adding a signature scheme is the same, except that it starts with creating a new subdirectory under crypto_sign/.

Using optimized FIPS202 (Keccak, SHA3, SHAKE)

Many schemes submitted to NIST use SHA-3, SHAKE or cSHAKE for hashing. This is why pqm4 comes with highly optimized Keccak code that is accessible from all KEM and signature implementations. Functions from the FIPS202 standard (and related publication SP 800-185) are defined in common/fips202.h as follows:

void shake128_absorb(uint64_t *state, const unsigned char *input, unsigned int inlen);
void shake128_squeezeblocks(unsigned char *output, unsigned long long nblocks, uint64_t *state);
void shake128(unsigned char *output, unsigned long long outlen, const unsigned char *input,  unsigned long long inlen);

void cshake128_simple_absorb(uint64_t *state, uint16_t cstm, const unsigned char *in, unsigned long long inlen);
void cshake128_simple_squeezeblocks(unsigned char *output, unsigned long long nblocks, uint64_t *state);
void cshake128_simple(unsigned char *output, unsigned long long outlen, uint16_t cstm, const unsigned char *in, unsigned long long inlen);

void shake256_absorb(uint64_t *state, const unsigned char *input, unsigned int inlen);
void shake256_squeezeblocks(unsigned char *output, unsigned long long nblocks, uint64_t *state);
void shake256(unsigned char *output, unsigned long long outlen, const unsigned char *input,  unsigned long long inlen);

void cshake256_simple_absorb(uint64_t *state, uint16_t cstm, const unsigned char *in, unsigned long long inlen);
void cshake256_simple_squeezeblocks(unsigned char *output, unsigned long long nblocks, uint64_t *state);
void cshake256_simple(unsigned char *output, unsigned long long outlen, uint16_t cstm, const unsigned char *in, unsigned long long inlen);

void sha3_256(unsigned char *output, const unsigned char *input,  unsigned long long inlen);
void sha3_512(unsigned char *output, const unsigned char *input,  unsigned long long inlen);

Implementations that want to make use of these optimized routines simply include fips202.h. The API for sha3_256 and sha3_512 follows the SUPERCOP hash API. The API for shake256 and shake512 is very similar, except that it supports variable-length output. The SHAKE and cSHAKE functions are also accessible via the absorb-squeezeblocks functions, which offer incremental output generation (but not incremental input handling).

Using optimised SHA512

Some schemes submitted to NIST make use of SHA512 for hashing. We've experimented with assembly-optimised SHA512, but found that the speed-up achievable with this compared to the C implementation from SUPERCOP is negligible when compiled using arm-none-eabi-gcc-8.2.0. For older compiler versions (e.g. 5.4.1) hand-optimised assembly implementations were significantly faster. We've therefore decided to only include a C version of SHA512. The available functions are:

int crypto_hash_sha512(unsigned char *out,const unsigned char *in,unsigned long long inlen);

Implementations can make use of this by including crypto_hash_sha512.h.

Bibliography

When referring to this framework in academic literature, please consider using the following bibTeX excerpt:

@misc{PQM4,
  title = {{PQM4}: Post-quantum crypto library for the {ARM} {Cortex-M4}},
  author = {Matthias J. Kannwischer and Joost Rijneveld and Peter Schwabe and Ko Stoffelen},
  note = {\url{https://github.com/mupq/pqm4}}
}

License

Different parts of pqm4 have different licenses. Specifically,

  • the files under common/ are in the public domain;
  • the files under crypto_kem/frodo640-cshake/ are under MIT License;
  • the files under crypto_kem/kindi/ are covered by the corresponding IP statements submitted to NIST;
  • the files under crypto_kem/kyber768/ are in the public domain;
  • the files under crypto_kem/newhope1024cca/ are in the public domain;
  • the files under crypto_kem/ntruhrss701/ are in the public domain;
  • the files under crypto_kem/ntru-kem-743/ are in the public domain;
  • the files under crypto_kem/rlizard-1024-11/ are covered by the corresponding IP statements submitted to NIST;
  • the files under crypto_kem/saber/ are in the public domain;
  • the files under crypto_kem/sikep751/ are under MIT License;
  • the files under crypto_kem/sntrup4591761/ are in the public domain;
  • the files under crypto_sign/dilithium/ are in the public domain;
  • the files under crypto_sign/qTesla-I/ are in the public domain;
  • the files under crypto_sign/qTesla-III-size/ are in the public domain;
  • the files under crypto_sign/qTesla-III-speed/ are in the public domain;
  • the files under crypto_sign/sphincs-shake256-128s/ are in the public domain;
  • the files under hostside/ are in the public domain;
  • the files under the submodule directory libopencm3/ are under LGPL3;
  • the files speed.c, stack.c, test.c, testvectors.c, and testvectors-host.c in crypto_kem/ are in the public domain;
  • the files speed.c, stack.c, test.c, testvectors.c, and testvectors-host.c in crypto_sign/ are in the public domain; and
  • the files benchmarks.py, benchmarks_to_md.py, Makefile, README.md, test.py, testvectors.py, and utils.py are in the public domain.