ProVerif-ATP - Combining ProVerif and Automated Theorem Provers for Security Protocol Verification
Combining ProVerif and Automated Theorem Provers for Security Protocol Verification
Authors : Di Long Li and Alwen Tiu, at The Australian National University, Canberra ACT 2600, Australia
ProVerif-ATP is undergoing some code overhaul at the moment, and master branch may not be buildable
Please open an issue if you need it to be resolved urgently
The paper which this project was a part of was accepted for CADE-27.
The pre-printed copy of the paper with appendix is available in this repository here.
The final authenticated publication is available online at https://doi.org/10.1007/978-3-030-29436-6_21
The prerequisites and install command are documented here
pvatp protocol.pv
where protocol.pv
is the protocol specification in typed pi-calculus used by ProVerif
examples/
directory contains the protocol specifications we used for our benchmark, and also other ones we created during the project
See the user manual for more details and an example
doc/manual/
(README) contains the user manual
doc/pvatp/
(README) contains the documentations detailing the architecture of ProVerif-ATP
doc/proverif/
(README) contains the documentations detailing the modifications we made in ProVerif
doc/narrator/
(README) contains the documentations detailing architecture or Narrator
src/
narrator/
This is part of the original work developed for this project (excluding node_modules/
subdirectory). Narrator provides the interface for viewing the knowledge graph and attack traces. The files (excluding node_modules/
subdirectory) are published under the MIT license.
The subdirectory node_modules/
contains downloaded copies of Javascript libraries. They are included in the repository for easier building and usage of the framework only. They are not part of our work, they are not modified by us, and are distrbuted under their respective original licenses.
proverif2.00/
examples/
We follow the semantic versioning scheme with the following specifics
Right now
Any change in our copy of ProVerif will result in increment of the version number of ProVerif-ATP (following the semantic versioning scheme’s guidelines)
Narrator’s versioning is always same as ProVerif-ATP’s versioning
This means if there are changes in our copy of ProVerif, but not in Narrator, both ProVerif-ATP and Narrator’s version numbers are still incremented
In future after the modifications have been integrated into the official ProVerif distribution
We tag each new version when the version is finalised and released
While the TPTP parser code in Narrator was independently developed from scratch according to the TPTP syntax reference, zipperposition‘s TPTP parser code was used as reference during the final debugging phase