this repo has no description
1opam-version: "2.0" 2synopsis: "CryptoVerif: Cryptographic protocol verifier in the computational model" 3description: """ 4CryptoVerif is an automatic protocol prover sound in the computational model. It can prove 5 6 - secrecy; 7 - correspondences, which include in particular authentication; 8 - indistinguishability between two games. 9 10It provides a generic mechanism for specifying the security assumptions on cryptographic primitives, which can handle in particular symmetric encryption, message authentication codes, public-key encryption, signatures, hash functions. 11 12The generated proofs are proofs by sequences of games, as used by cryptographers. These proofs are valid for a number of sessions polynomial in the security parameter, in the presence of an active adversary. CryptoVerif can also evaluate the probability of success of an attack against the protocol as a function of the probability of breaking each cryptographic primitive and of the number of sessions (exact security). 13 14This software is under development; please use it at your own risk. Comments and bug reports welcome. 15""" 16maintainer: "Bruno Blanchet <Bruno.Blanchet@inria.fr>" 17authors: "Bruno Blanchet <Bruno.Blanchet@inria.fr> and David Cadé <David.Cade@normalesup.org>" 18license: "CeCILL-B" 19homepage: "https://cryptoverif.inria.fr" 20bug-reports: "Bruno.Blanchet@inria.fr" 21depends: [ "ocaml" { >= "4.03" } "ocamlfind" "cryptokit" "conf-m4" ] 22build: [ 23 [ "./build" "byte" ] { !ocaml:native } 24 [ "./build" ] { ocaml:native } 25] 26install: [ "./build" "install" "%{prefix}%" ] 27url { 28 src: "https://cryptoverif.inria.fr/cryptoverif2.02.tar.gz" 29 checksum: [ 30 "md5=d8fc3009b4de37f09ab769a323198c0c" 31 "sha512=1fcc9a991211d13b0fa2b4ebe864a4595cd90a85bb71bed3e82a8fbf5f9304567b42875adebae9b78f2df9fcee56c7659f02fe83f15bca57ab854b607cba2058" 32 ] 33}