scyther/spdl/SPORE/wmf.spdl

84 lines
1.6 KiB
Plaintext
Raw Normal View History

# Wide Mouthed Frog
#
# Modelled after the description in the SPORE library
# http://www.lsv.ens-cachan.fr/spore/wideMouthedFrog.html
#
usertype Key;
usertype TimeStamp;
secret k: Function;
const Fresh: Function;
const Compromised: Function;
protocol wmfSessionKeyCompromise(C)
{
// Read the names of 3 agents and disclose a session between them including
// corresponding session key to simulate key compromise
role C {
const Ni,Nr: Nonce;
const Kir: Key;
const Ti,Ts: TimeStamp;
var I,R,S: Agent;
read_C1(C,C, I,R,S);
send_C2(C,C, I, {Ti,R,Kir}k(I,S),
{Ts,I,Kir}k(R,S),
Kir
);
claim_C3(C,Empty, (Compromised,Kir));
}
}
protocol wmf(I,R,S)
{
2005-05-23 13:35:58 +01:00
role I
{
const Kir: Key;
const Ti: TimeStamp;
2005-05-23 13:35:58 +01:00
var Kr: Key;
2005-05-23 13:35:58 +01:00
send_1(I,S, I, {Ti, R, Kir}k(I,S));
2005-05-23 13:35:58 +01:00
claim_I1(I,Secret,Kir);
claim_I2(I,Empty,(Fresh,Kir));
2005-05-23 13:35:58 +01:00
}
role R
{
var Ts: TimeStamp;
var Kir: Key;
2005-05-23 13:35:58 +01:00
read_2(S,R, {Ts, I, Kir}k(R,S) );
2005-05-23 13:35:58 +01:00
claim_R1(R,Secret,Kir);
claim_R2(R,Nisynch);
claim_R3(R,Empty,(Fresh,Kir));
2005-05-23 13:35:58 +01:00
}
2005-05-23 13:35:58 +01:00
role S
{
var Kir: Key;
const Ts: TimeStamp;
var Ti: TimeStamp;
2005-05-23 13:35:58 +01:00
read_1(I,S, I,{Ti, R, Kir}k(I,S) );
send_2(S,R, {Ts, I, Kir}k(R,S));
2005-05-23 13:35:58 +01:00
}
}
const Alice,Bob,Eve,Simon: Agent;
const Ke: Key;
const Te: TimeStamp;
untrusted Eve;
compromised k(Eve,Simon);
run wmf.I (Agent,Agent,Simon);
run wmf.R (Agent,Agent,Simon);
run wmf.S (Agent,Agent,Simon);