├── .gitignore ├── EuroSP.pdf ├── Makefile ├── README.md ├── cv ├── README.md ├── TextSecure-AA.FS.NO_REPLAY_PROT.cv ├── TextSecure-AA.FS.REPLAY_PROT.cv ├── TextSecure-AA.STD.NO_REPLAY_PROT.cv ├── TextSecure-AA.STD.REPLAY_PROT.cv ├── TextSecure-AA.m4.cv ├── TextSecure-AB-BA.FS.NO_REPLAY_PROT.cv ├── TextSecure-AB-BA.FS.REPLAY_PROT.cv ├── TextSecure-AB-BA.STD.NO_REPLAY_PROT.cv ├── TextSecure-AB-BA.STD.REPLAY_PROT.cv ├── TextSecure-AB-BA.m4.cv ├── TextSecure-KCI.NO_REPLAY_PROT.cv ├── TextSecure-KCI.REPLAY_PROT.cv ├── TextSecure-KCI.m4.cv ├── TextSecure.cvl ├── results └── runcv ├── paper-longversion.pdf ├── ps └── sp.js ├── ps2pv ├── LICENSE ├── Makefile ├── README ├── _tags ├── ast.ml ├── error.ml ├── globals.ml ├── htmlast.ml ├── htmllexer.ml ├── htmlparser.mly ├── jsdefp.ml ├── lexer.ml ├── parser.mly ├── pretty.ml ├── proverif.ml ├── typecheck.ml └── url.ml ├── pscl └── pscl.js └── tl ├── authenticity-1-ab-oneway.pv ├── authenticity-1-ab-twoway.pv ├── authenticity-1-abm-oneway.pv ├── authenticity-1-abm-twoway.pv ├── forwardsecrecy-1-ab-oneway.pv ├── forwardsecrecy-2-ab-oneway.pv ├── forwardsecrecy-3-ab-oneway.pv ├── futuresecrecy-3-ab-oneway.pv ├── indistinguishability-1-ab-oneway.pv ├── kci-1-a-oneway.pv ├── kci-1-b-oneway.pv ├── secrecy-1-ab-oneway.pv └── secrecy-1-ab-twoway.pv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/.gitignore -------------------------------------------------------------------------------- /EuroSP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/EuroSP.pdf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/README.md -------------------------------------------------------------------------------- /cv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/README.md -------------------------------------------------------------------------------- /cv/TextSecure-AA.FS.NO_REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AA.FS.NO_REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AA.FS.REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AA.FS.REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AA.STD.NO_REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AA.STD.NO_REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AA.STD.REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AA.STD.REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AA.m4.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AA.m4.cv -------------------------------------------------------------------------------- /cv/TextSecure-AB-BA.FS.NO_REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AB-BA.FS.NO_REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AB-BA.FS.REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AB-BA.FS.REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AB-BA.STD.NO_REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AB-BA.STD.NO_REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AB-BA.STD.REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AB-BA.STD.REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-AB-BA.m4.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-AB-BA.m4.cv -------------------------------------------------------------------------------- /cv/TextSecure-KCI.NO_REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-KCI.NO_REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-KCI.REPLAY_PROT.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-KCI.REPLAY_PROT.cv -------------------------------------------------------------------------------- /cv/TextSecure-KCI.m4.cv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure-KCI.m4.cv -------------------------------------------------------------------------------- /cv/TextSecure.cvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/TextSecure.cvl -------------------------------------------------------------------------------- /cv/results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/results -------------------------------------------------------------------------------- /cv/runcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/cv/runcv -------------------------------------------------------------------------------- /paper-longversion.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/paper-longversion.pdf -------------------------------------------------------------------------------- /ps/sp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps/sp.js -------------------------------------------------------------------------------- /ps2pv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/LICENSE -------------------------------------------------------------------------------- /ps2pv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/Makefile -------------------------------------------------------------------------------- /ps2pv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/README -------------------------------------------------------------------------------- /ps2pv/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/_tags -------------------------------------------------------------------------------- /ps2pv/ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/ast.ml -------------------------------------------------------------------------------- /ps2pv/error.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/error.ml -------------------------------------------------------------------------------- /ps2pv/globals.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/globals.ml -------------------------------------------------------------------------------- /ps2pv/htmlast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/htmlast.ml -------------------------------------------------------------------------------- /ps2pv/htmllexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/htmllexer.ml -------------------------------------------------------------------------------- /ps2pv/htmlparser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/htmlparser.mly -------------------------------------------------------------------------------- /ps2pv/jsdefp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/jsdefp.ml -------------------------------------------------------------------------------- /ps2pv/lexer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/lexer.ml -------------------------------------------------------------------------------- /ps2pv/parser.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/parser.mly -------------------------------------------------------------------------------- /ps2pv/pretty.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/pretty.ml -------------------------------------------------------------------------------- /ps2pv/proverif.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/proverif.ml -------------------------------------------------------------------------------- /ps2pv/typecheck.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/typecheck.ml -------------------------------------------------------------------------------- /ps2pv/url.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/ps2pv/url.ml -------------------------------------------------------------------------------- /pscl/pscl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/pscl/pscl.js -------------------------------------------------------------------------------- /tl/authenticity-1-ab-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/authenticity-1-ab-oneway.pv -------------------------------------------------------------------------------- /tl/authenticity-1-ab-twoway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/authenticity-1-ab-twoway.pv -------------------------------------------------------------------------------- /tl/authenticity-1-abm-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/authenticity-1-abm-oneway.pv -------------------------------------------------------------------------------- /tl/authenticity-1-abm-twoway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/authenticity-1-abm-twoway.pv -------------------------------------------------------------------------------- /tl/forwardsecrecy-1-ab-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/forwardsecrecy-1-ab-oneway.pv -------------------------------------------------------------------------------- /tl/forwardsecrecy-2-ab-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/forwardsecrecy-2-ab-oneway.pv -------------------------------------------------------------------------------- /tl/forwardsecrecy-3-ab-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/forwardsecrecy-3-ab-oneway.pv -------------------------------------------------------------------------------- /tl/futuresecrecy-3-ab-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/futuresecrecy-3-ab-oneway.pv -------------------------------------------------------------------------------- /tl/indistinguishability-1-ab-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/indistinguishability-1-ab-oneway.pv -------------------------------------------------------------------------------- /tl/kci-1-a-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/kci-1-a-oneway.pv -------------------------------------------------------------------------------- /tl/kci-1-b-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/kci-1-b-oneway.pv -------------------------------------------------------------------------------- /tl/secrecy-1-ab-oneway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/secrecy-1-ab-oneway.pv -------------------------------------------------------------------------------- /tl/secrecy-1-ab-twoway.pv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Inria-Prosecco/proscript-messaging/HEAD/tl/secrecy-1-ab-twoway.pv --------------------------------------------------------------------------------