2006-11-21 13:42:06 +00:00
|
|
|
# Andrew Secure RPC
|
|
|
|
#
|
|
|
|
# Modelled after the description in the SPORE library
|
|
|
|
# http://www.lsv.ens-cachan.fr/spore/andrew.html
|
|
|
|
#
|
|
|
|
# Note:
|
|
|
|
# The shared key between I and R is modelled as k(I,R) currently
|
|
|
|
# there is no way to express that this key is equal to k(R,I)
|
|
|
|
# So it is possile that certain attacks that use this property are not found
|
|
|
|
#
|
|
|
|
|
|
|
|
usertype SessionKey;
|
|
|
|
const succ: Function;
|
|
|
|
const Fresh: Function;
|
|
|
|
|
|
|
|
protocol andrew(I,R)
|
|
|
|
{
|
|
|
|
role I
|
|
|
|
{
|
2012-04-23 14:53:28 +01:00
|
|
|
fresh ni: Nonce;
|
2006-11-21 13:42:06 +00:00
|
|
|
var nr,nr2: Nonce;
|
|
|
|
var kir: SessionKey;
|
|
|
|
|
|
|
|
send_1(I,R, I,{ni}k(I,R) );
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_2(R,I, {succ(ni),nr}k(I,R) );
|
2006-11-21 13:42:06 +00:00
|
|
|
send_3(I,R, {succ(nr)}k(I,R) );
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_4(R,I, {kir,nr2}k(I,R) );
|
2006-11-21 13:42:06 +00:00
|
|
|
claim_I1(I,Secret,kir);
|
|
|
|
claim_I2(I,Nisynch);
|
|
|
|
claim_I3(I,Niagree);
|
|
|
|
claim_I4(I,Empty,(Fresh,kir));
|
|
|
|
}
|
|
|
|
|
|
|
|
role R
|
|
|
|
{
|
|
|
|
var ni: Nonce;
|
2012-04-23 14:53:28 +01:00
|
|
|
fresh nr,nr2: Nonce;
|
|
|
|
fresh kir: SessionKey;
|
2006-11-21 13:42:06 +00:00
|
|
|
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_1(I,R, I,{ni}k(I,R) );
|
2006-11-21 13:42:06 +00:00
|
|
|
send_2(R,I, {succ(ni),nr}k(I,R) );
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_3(I,R, {succ(nr)}k(I,R) );
|
2006-11-21 13:42:06 +00:00
|
|
|
send_4(R,I, {kir,nr2}k(I,R) );
|
|
|
|
claim_R1(R,Secret,kir);
|
|
|
|
claim_R2(R,Nisynch);
|
|
|
|
claim_R3(R,Niagree);
|
|
|
|
claim_R4(R,Empty,(Fresh,kir));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|