2006-11-21 13:42:06 +00:00
|
|
|
# Woo and Lam Mutual Authentication
|
|
|
|
#
|
|
|
|
# Modelled after the description in the SPORE library
|
|
|
|
# http://www.lsv.ens-cachan.fr/spore/wooLamMutual.html
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
usertype SessionKey;
|
|
|
|
|
|
|
|
const Fresh: Function;
|
|
|
|
const Compromised: Function;
|
|
|
|
|
|
|
|
protocol woolam(I,R,S)
|
|
|
|
{
|
|
|
|
role I
|
|
|
|
{
|
2012-04-23 14:53:28 +01:00
|
|
|
fresh N1: Nonce;
|
2006-11-21 13:42:06 +00:00
|
|
|
var Kir: SessionKey;
|
|
|
|
var N2: Nonce;
|
|
|
|
|
|
|
|
send_1(I,R, I, N1);
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_2(R,I, R, N2);
|
2006-11-21 13:42:06 +00:00
|
|
|
send_3(I,R, {I, R, N1, N2}k(I,S));
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_6(R,I, {R, N1, N2, Kir}k(I,S), {N1,N2}Kir);
|
2006-11-21 13:42:06 +00:00
|
|
|
send_7(I,R, {N2}Kir);
|
|
|
|
|
|
|
|
|
|
|
|
claim_I1(I,Secret,Kir);
|
|
|
|
claim_I2(I,Nisynch);
|
|
|
|
claim_I3(I,Empty,(Fresh,Kir));
|
|
|
|
}
|
|
|
|
|
|
|
|
role R
|
|
|
|
{
|
2012-04-23 14:53:28 +01:00
|
|
|
fresh N2: Nonce;
|
2006-11-21 13:42:06 +00:00
|
|
|
var N1: Nonce;
|
|
|
|
var Kir: SessionKey;
|
|
|
|
var T1,T2: Ticket;
|
|
|
|
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_1(I,R, I, N1);
|
2006-11-21 13:42:06 +00:00
|
|
|
send_2(R,I, R, N2);
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_3(I,R, T1);
|
2006-11-21 13:42:06 +00:00
|
|
|
send_4(R,S, T1, {I, R, N1, N2}k(R,S));
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_5(S,R, T2, {I, N1, N2, Kir}k(R,S));
|
2006-11-21 13:42:06 +00:00
|
|
|
send_6(R,I, T2, {N1,N2}Kir);
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_7(I,R, {N2}Kir);
|
2006-11-21 13:42:06 +00:00
|
|
|
|
|
|
|
claim_R1(R,Secret,Kir);
|
|
|
|
claim_R2(R,Nisynch);
|
|
|
|
claim_R3(R,Empty,(Fresh,Kir));
|
|
|
|
}
|
|
|
|
|
|
|
|
role S
|
|
|
|
{
|
2012-04-23 14:53:28 +01:00
|
|
|
fresh Kir: SessionKey;
|
2006-11-21 13:42:06 +00:00
|
|
|
var N1,N2: Nonce;
|
|
|
|
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_4(R,S, {I, R, N1, N2}k(I,S), {I, R, N1, N2}k(R,S));
|
2006-11-21 13:42:06 +00:00
|
|
|
send_5(S,R, {R, N1, N2, Kir}k(I,S), {I, N1, N2, Kir}k(R,S));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-26 15:40:01 +01:00
|
|
|
|
|
|
|
|