- Fixed some issues with bad protocol naming.
This commit is contained in:
parent
e2990e37de
commit
0f199670d3
@ -2,7 +2,7 @@ const pk: Function;
|
||||
secret sk: Function;
|
||||
inversekeys (pk,sk);
|
||||
|
||||
protocol carkeybroken(I,R)
|
||||
protocol carkeybrokenlim(I,R)
|
||||
{
|
||||
role I
|
||||
{
|
||||
@ -26,7 +26,7 @@ untrusted Eve;
|
||||
const nc: Nonce;
|
||||
compromised sk(Eve);
|
||||
|
||||
run carkeybroken.I(Alice,Bob);
|
||||
run carkeybroken.R(Alice,Bob);
|
||||
run carkeybroken.I(Alice,Bob);
|
||||
run carkeybroken.R(Alice,Bob);
|
||||
run carkeybrokenlim.I(Alice,Bob);
|
||||
run carkeybrokenlim.R(Alice,Bob);
|
||||
run carkeybrokenlim.I(Alice,Bob);
|
||||
run carkeybrokenlim.R(Alice,Bob);
|
||||
|
@ -36,8 +36,8 @@ ScytherProgram = "../src/scyther"
|
||||
|
||||
# Scyther parameters
|
||||
ScytherDefaults = "--summary"
|
||||
ScytherMethods = "--match=0 --arachne"
|
||||
ScytherBounds = "--timer=300 --max-runs=5 --max-depth=25 --max-length=30"
|
||||
ScytherMethods = "--match=1 --arachne"
|
||||
ScytherBounds = "--timer=10 --max-runs=5 --max-length=25"
|
||||
|
||||
# Build a large part of the command line (for Scyther) already
|
||||
ScytherArgs = ScytherDefaults + " " + ScytherMethods + " " + ScytherBounds
|
||||
|
@ -32,7 +32,7 @@ const succ: PseudoFunction;
|
||||
|
||||
usertype Ticket;
|
||||
|
||||
protocol nssymmetric(A,S,B)
|
||||
protocol nssymmetricamended(A,S,B)
|
||||
{
|
||||
role A
|
||||
{
|
||||
|
@ -2,7 +2,7 @@ const pk: Function;
|
||||
secret sk: Function;
|
||||
inversekeys (pk,sk);
|
||||
|
||||
protocol nsl3(I,R)
|
||||
protocol nsl3rep(I,R)
|
||||
{
|
||||
role I
|
||||
{
|
||||
@ -37,7 +37,7 @@ untrusted Eve;
|
||||
const nc: Nonce;
|
||||
compromised sk(Eve);
|
||||
|
||||
run nsl3.I(Agent,Agent);
|
||||
run nsl3.R(Agent,Agent);
|
||||
run nsl3.I(Agent,Agent);
|
||||
run nsl3.R(Agent,Agent);
|
||||
run nsl3rep.I(Agent,Agent);
|
||||
run nsl3rep.R(Agent,Agent);
|
||||
run nsl3rep.I(Agent,Agent);
|
||||
run nsl3rep.R(Agent,Agent);
|
||||
|
Loading…
Reference in New Issue
Block a user