scyther/testing/ksl.spdl

79 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2006-11-21 13:40:50 +00:00
/*
* KSL from SPORE
*
* Messages 6-8 are intended for repeated authentication, and there are
* known attacks on this. However, we don't model that yet.
*
* Furthermore, it is interesting to experiment here with key
* compromise (of kab), when this is implemented in Scyther.
*/
usertype Server, SessionKey, GeneralizedTimestamp, Ticket, TicketKey;
secret k: Function;
const s: Server;
/* give the intruder something to work with */
const kee: SessionKey;
untrusted e;
compromised k(e,s);
protocol ksl(A,B,S)
{
role A
{
fresh Na, Ma: Nonce;
2006-11-21 13:40:50 +00:00
var Nc, Mb: Nonce;
var T: Ticket;
var Kab: SessionKey;
send_1(A,B, Na, A);
2012-05-02 22:26:41 +01:00
recv_4(B,A, { Na,B,Kab }k(A,S), T, Nc, {Na}Kab );
2006-11-21 13:40:50 +00:00
send_5(A,B, { Nc }Kab );
send_6(A,B, Ma,T );
2012-05-02 22:26:41 +01:00
recv_7(B,A, Mb,{Ma}Kab );
2006-11-21 13:40:50 +00:00
send_8(A,B, {Mb}Kab );
claim_A1(A,Secret, Kab);
claim_A2(A,Niagree);
claim_A3(A,Nisynch);
}
role B
{
var Na,Ma: Nonce;
fresh Nb,Nc,Mb: Nonce;
2006-11-21 13:40:50 +00:00
var Kab: SessionKey;
fresh Kbb: TicketKey;
fresh Tb: GeneralizedTimestamp;
2006-11-21 13:40:50 +00:00
var T: Ticket;
2012-05-02 22:26:41 +01:00
recv_1(A,B, Na, A);
2006-11-21 13:40:50 +00:00
send_2(B,S, Na, A, Nb, B );
2012-05-02 22:26:41 +01:00
recv_3(S,B, { Nb, A, Kab }k(B,S), T );
2006-11-21 13:40:50 +00:00
send_4(B,A, T, { Tb, A, Kab }Kbb, Nc, {Na}Kab );
2012-05-02 22:26:41 +01:00
recv_5(A,B, { Nc }Kab );
2006-11-21 13:40:50 +00:00
2012-05-02 22:26:41 +01:00
recv_6(A,B, Ma,{ Tb, A, Kab }Kbb );
2006-11-21 13:40:50 +00:00
send_7(B,A, Mb,{Ma}Kab );
2012-05-02 22:26:41 +01:00
recv_8(A,B, {Mb}Kab );
2006-11-21 13:40:50 +00:00
claim_B1(B,Secret, Kab);
claim_B2(B,Niagree);
claim_B3(B,Nisynch);
}
role S
{
var Na, Nb: Nonce;
fresh Kab: SessionKey;
2006-11-21 13:40:50 +00:00
2012-05-02 22:26:41 +01:00
recv_2(B,S, Na, A, Nb, B );
2006-11-21 13:40:50 +00:00
send_3(S,B, { Nb, A, Kab }k(B,S), { Na,B,Kab }k(A,S) );
}
}