- Added Woo Lam Pi f (from SPORE)

This commit is contained in:
ccremers 2005-03-08 20:57:35 +00:00
parent e66c4ebd78
commit 4d6c98046e
2 changed files with 56 additions and 0 deletions

55
spdl/woolam-pi-f.spdl Normal file
View File

@ -0,0 +1,55 @@
/*
* Woo-lam version from Spore, Pi f
*
* Only one-way verification
*/
usertype Server, SessionKey, Ticket;
secret k: Function;
const Alice, Bob, Charlie, Eve: Agent;
const Simon: Server;
const ne: Nonce;
const ke: SessionKey;
untrusted Eve;
compromised k(Eve,Simon);
protocol woolampif(A,B,S)
{
role A
{
var Nb: Nonce;
send_1(A,B, A);
read_2(B,A, Nb);
send_3(A,B, { A,B,Nb }k(A,S) );
}
role B
{
const Nb: Nonce;
var T: Ticket;
read_1(A,B, A);
send_2(B,A, Nb);
read_3(A,B, T);
send_4(B,S, { A,B,Nb, T }k(B,S) );
read_5(S,B, { A,B,Nb }k(B,S) );
claim_6(B,Niagree);
claim_7(B,Nisynch);
}
role S
{
var Nb: Nonce;
read_4(B,S, { A,B,Nb, { A,B,Nb }k(A,S) }k(B,S) );
send_5(S,B, { A,B,Nb }k(B,S) );
}
}
run woolampif.B(Alice,Bob,Simon);
run woolampif.B(Alice,Bob,Simon);

View File

@ -40,6 +40,7 @@ def from_literature():
"wmf-brutus.spdl", "wmf-brutus.spdl",
"woolam-ce.spdl", "woolam-ce.spdl",
"woolam-cmv.spdl", "woolam-cmv.spdl",
"woolam-pi-f.spdl",
"yahalom-ban.spdl", "yahalom-ban.spdl",
"yahalom-lowe.spdl", "yahalom-lowe.spdl",
"yahalom-paulson.spdl", "yahalom-paulson.spdl",