2010-11-09 09:05:34 +00:00
|
|
|
/*
|
|
|
|
Bilateral Key Exchange with Public Key protocol (BKEPK)
|
|
|
|
*/
|
|
|
|
|
|
|
|
usertype SessionKey;
|
|
|
|
|
|
|
|
hashfunction hash;
|
|
|
|
|
|
|
|
protocol bke(I,R)
|
|
|
|
{
|
|
|
|
role I
|
|
|
|
{
|
|
|
|
fresh ni: Nonce;
|
|
|
|
var nr: Nonce;
|
|
|
|
var kir: SessionKey;
|
|
|
|
|
|
|
|
send_1 (I,R, { ni,I }pk(R) );
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_2 (R,I, { hash(ni),nr,R,kir }pk(I) );
|
2010-11-09 09:05:34 +00:00
|
|
|
send_3 (I,R, { hash(nr) }kir );
|
|
|
|
claim_4 (I, Secret, kir );
|
|
|
|
//claim_5 (I, Niagree );
|
|
|
|
//claim_6 (I, Nisynch );
|
|
|
|
}
|
|
|
|
|
|
|
|
role R
|
|
|
|
{
|
|
|
|
var ni: Nonce;
|
|
|
|
fresh nr: Nonce;
|
|
|
|
fresh kir: SessionKey;
|
|
|
|
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_1 (I,R, { ni,I }pk(R) );
|
2010-11-09 09:05:34 +00:00
|
|
|
send_2 (R,I, { hash(ni),nr,R,kir }pk(I) );
|
2012-04-26 15:40:01 +01:00
|
|
|
recv_3 (I,R, { hash(nr) }kir );
|
2010-11-09 09:05:34 +00:00
|
|
|
claim_7 (R, Secret, kir );
|
|
|
|
//claim_8 (R, Niagree );
|
|
|
|
//claim_9 (R, Nisynch );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-31 14:41:52 +00:00
|
|
|
|