forked from tamarin-prover/tamarin-prover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tamarin-prover.cabal
196 lines (167 loc) · 5.44 KB
/
tamarin-prover.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
cabal-version: >= 1.10
build-type: Simple
name: tamarin-prover
version: 1.9.0
license: GPL
license-file: LICENSE
category: Theorem Provers
author: Benedikt Schmidt,
Simon Meier,
Cas Cremers <[email protected]>,
Jannik Dreier <[email protected]>,
Ralf Sasse <[email protected]>
maintainer: Cas Cremers <[email protected]>,
Jannik Dreier <[email protected]>,
Ralf Sasse <[email protected]>
copyright: Benedikt Schmidt, Simon Meier, Cas Cremers, Jannik Dreier, Ralf Sasse, 2010-2023
synopsis: The Tamarin prover for security protocol analysis.
description:
Note that the @tamarin-prover@ should be installed from source as
described in its README at
<https://github.com/tamarin-prover/tamarin-prover>.
.
The Tamarin prover is a tool for the analysis of security protocols. It
implements a constraint solving algorithm that supports both falsification
and verification of security protocols with respect to an unbounded number
of sessions. The underlying security protocol model uses multiset
rewriting to specify protocols and adversary capabilities, a guarded
fragment of first-order logic to specify security properties, and
equational theories to model the algebraic properties of cryptographic
operators.
.
The paper describing the theory underlying the Tamarin prover was
accepted at CSF 2012. Its extended version is available from
<http://tamarin-prover.github.io>.
.
The Tamarin prover supports both a batch analysis mode and the
interactive construction of security proofs using a GUI. Example protocols
and the user guide are installed together with the prover. Just call the
@tamarin-prover@ executable without any arguments to get more information.
.
The Tamarin prover uses maude (<http://maude.cs.illinois.edu/>) as a
unification backend and GraphViz (<http://www.graphviz.org/>) to visualize
constraint systems. Detailed instructions for installing the Tamarin
prover are given at <http://tamarin-prover.github.io>.
.
The paper describing the theory underlying the extension for observational
equivalence is published at CCS 2015. Its extended version is available from
<http://tamarin-prover.github.io>. For observational equivalence proofs just
add the "--diff" flag when calling the @tamarin-prover@.
homepage: https://tamarin-prover.github.io
--------------
-- extra files
--------------
extra-source-files:
-- cached intruder variants for DH and BP
data/intruder_variants_dh.spthy
data/intruder_variants_bp.spthy
-- files for the web-frontend
data/img/*.ico
data/img/*.gif
data/img/*.png
data/js/*.js
data/css/*.css
data/css/smoothness/*.css
data/css/smoothness/images/*.png
-------------------------
-- repository information
-------------------------
source-repository head
type: git
location: https://github.com/tamarin-prover/tamarin-prover.git
--------------
-- build flags
--------------
flag threaded
default: True
manual: False
description: Build with support for multithreaded execution
flag test-coverage
default: True
manual: True
description: Build with test coverage support
flag build-tests
default: False
manual: True
description: Build unit test driver
----------------------
-- executables stanzas
----------------------
executable tamarin-prover
default-language: Haskell2010
if flag(threaded)
ghc-options: -threaded -eventlog
-- -XFlexibleInstances
ghc-options: -Wall -fwarn-tabs -rtsopts -feager-blackholing -main-is Main
ghc-prof-options: -auto-all
-- Parallelize by default. Only activated for GHC 7.4, as this flag was
-- unstable in earlier -- versions; i.e., it resulted in command-line
-- parsing errors.
if impl(ghc >= 7.4) && flag(threaded)
ghc-options: -with-rtsopts=-N
hs-source-dirs: src
main-is: Main.hs
build-depends:
HUnit
, base
, binary
, binary-orphans
, binary-instances
, blaze-builder
, blaze-html
, bytestring
, cmdargs
, conduit
, containers
, deepseq
, directory
, exceptions
, fclabels
, file-embed
, filepath
, gitrev
, http-types
, mtl
, parsec
, process
, resourcet
, safe
, shakespeare
, template-haskell
, text
, threads
, time
, wai
, warp
, yesod-core
, yesod-static
, tamarin-prover-utils == 1.9.0
, tamarin-prover-term == 1.9.0
, tamarin-prover-theory == 1.9.0
, tamarin-prover-sapic == 1.9.0
, tamarin-prover-export == 1.9.0
, tamarin-prover-accountability == 1.9.0
other-modules:
Paths_tamarin_prover
-- Main
Main.Console
Main.Environment
Main.TheoryLoader
Main.Utils
Main.Mode.Batch
Main.Mode.Interactive
Main.Mode.Intruder
Main.Mode.Test
Web.Dispatch
Web.Hamlet
Web.Handler
Web.Instances
Web.Settings
Web.Theory
Web.Types
Test.ParserTests
other-extensions:
TemplateHaskell
source-repository head
type: git
location: https://github.com/tamarin-prover/tamarin-prover.git