- Fixed some issues with bad protocol naming.

This commit is contained in:
ccremers 2005-01-14 11:15:37 +00:00
parent e2990e37de
commit 0f199670d3
5 changed files with 13 additions and 13 deletions

View File

@ -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);

View File

@ -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

View File

@ -32,7 +32,7 @@ const succ: PseudoFunction;
usertype Ticket;
protocol nssymmetric(A,S,B)
protocol nssymmetricamended(A,S,B)
{
role A
{

View File

@ -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);