This is the helper material for the tutorial on EasyCrypt and Jasmin Indocrypt 2020 .
Contributors: Manuel Barbosa, François Dupressoir, Benjamin Grégoire, Vincent Laporte, Pierre-Yves Strub
doc/slides.pdf
contains the presentation which explains the example and exercisesdoc/cheatsheet.pdf
contains a new EasyCrypt cheat sheet
src/example/NbAESEnc.jazz
is a Jasmin implementation of AES-based NbPRFEnc with register-based calling conventionsrc/example/NbAESEnc_mem.jazz
is a Jasmin implementation of AES-based NbPRFEnc with memory-based calling conventionsrc/aeslib/aes.jazz
is reusable code for AES-NI in Jasmin
Folder proof/example
contains the EasyCrypt specs and proofs for the example:
.dir-locals.el
: Emacs EasyCrypt mode configuration file to extend include pathQCounter.ec
: Simple counter to keep track of queriesRFth.eca
: formalization of a random functionRPth.eca
: formalization of a random permutationPRFth.eca
: formalization of pseudorandom functionPRPth.eca
: formalization of pseudorandom permutation and RF/RP switching lemmaNbEnc.eca
: formalization of syntax, correctness and security of nonce-based encryptionNbPRFEnc.ec
: nonce-based encryption from a PRF (the main example)NbAESEnc_proof.ec
: Correctness and security proof for Jasmin implementation with register calling convention wrt toNbPRFEnc.ec
NbAESEnc_ct_proof.ec
: Constant-time proof for Jasmin implementation with register calling conventionNbAESEnc_mem_proof.ec
: Correctness proof for Jasmin implementation with memory calling convention wrt toNbPRFEnc.ec
NbAESEnc_mem_ct_proof.ec
: Constant-time proof for Jasmin implementation with memory calling convention
Folder proof/aeslib
contains the EasyCrypt specs and proofs for AES-NI:
.dir-locals.el
: Emacs EasyCrypt mode configuration file to extend include pathAES_spec.ec
: AES specification in both functional and imperative style, equivalence between the twoAES_proof.ec
: Correctness proof for Jasmin implementation of AES wrt toAES_spec.ec
AES_ct_proof.ec
: Constant-time proof for Jasmin implementation of AES
Folder extraction
contains the EasyCrypt code that is automatically generated from the Jasmin souces (the correctness and constant-time proofs then import these files):
extraction/example/NbAESEnc_jazz.ec
: EasyCrypt code extracted fromsrc/example/NbAESEnc.jazz
extraction/example/NbAESEnc_jazz_ct.ec
: EasyCrypt code extracted fromsrc/example/NbAESEnc.jazz
for constant-time proofextraction/example/NbAESEnc_mem_jazz.ec
: EasyCrypt code extracted fromsrc/example/NbAESEnc.jazz
extraction/example/NbAESEnc_mem_jazz_ct.ec
: EasyCrypt code extracted fromsrc/example/NbAESEnc.jazz
for constant-time proofextraction/aeslib/AES_jazz.ec
: EasyCrypt code extracted fromsrc/aeslib/aes.jazz
extraction/aeslib/AES_jazz_ct.ec
: EasyCrypt code extracted fromsrc/aeslib/aes.jazz
for constant-time proof- Additional files generated by the Jasmin compilers for array types also appear in this folder.
Folder test
contains the wrapper C files for executing the Jasmin examples:
test_NbAESEnc.c
: C program to testNbAESEnc.s
generated fromsrc/example/NbAESEnc.jazz
test_NbAESEnc_mem.c
: C program to testNbAESEnc_mem.s
generated fromsrc/example/NbAESEnc_mem.jazz
test_aes.c
: C program to testaes.s
generated fromsrc/aeslib/aes.jazz
Make sure to edit the Makefile so that it can find easycrypt
and jasminc
.
Then, from root directory:
make clean
removes olds filesmake all
builds tests and extracts EasyCrypt codemake safety
checks Jasmin code for safetymake test
executes the testsmake proofs
uses EasyCrypt to check all proofsmake check
runssafety
,test
andproofs
in one go