scyther/gui/Protocols/MultiProtocolAttacks/wmf-brutus.spdl

33 lines
372 B
Plaintext
Raw Normal View History

usertype SesKey, Server;
/* Version from the Brutus reports
*/
protocol wmfbrutus(A,B,S)
{
role A
{
fresh kab : SesKey;
send_1(A,S, A, { B,kab }k(A,S) );
}
role B
{
var kab : SesKey;
2012-04-26 15:40:01 +01:00
recv_2(S,B, { A, kab }k(B,S) );
claim_3(B, Secret,kab);
}
role S
{
var kab : SesKey;
2012-04-26 15:40:01 +01:00
recv_1(A,S, A, { B,kab }k(A,S) );
send_2(S,B, { A, kab }k(B,S) );
}
}