2004-02-20 11:37:28 +00:00
|
|
|
#define CERT(a) { a,pk(a) }sk(Terence)
|
|
|
|
#define MSG a,na,sid,pa,pb,nb,sid,pb,CERT(a),CERT(b),{pms}pk(b)
|
|
|
|
#define M hash(pms,na,nb)
|
|
|
|
#define F hash(M,MSG)
|
|
|
|
#define CLIENTK hash(sid,M,na,pa,a,nb,pb,b,false)
|
|
|
|
#define SERVERK hash(sid,M,na,pa,a,nb,pb,b,true)
|
|
|
|
|
2004-02-22 15:22:19 +00:00
|
|
|
usertype Params, Bool, SessionID;
|
|
|
|
|
2004-02-20 11:37:28 +00:00
|
|
|
const pk,hash: Function;
|
|
|
|
secret sk,unhash: Function;
|
|
|
|
inversekeys(pk,sk);
|
|
|
|
inversekeys(hash,unhash);
|
|
|
|
|
|
|
|
const pa,pb: Params;
|
|
|
|
const Terence: Agent;
|
|
|
|
const false,true: Bool;
|
|
|
|
|
|
|
|
|
|
|
|
protocol tlspaulson(a,b)
|
|
|
|
{
|
|
|
|
role a
|
|
|
|
{
|
|
|
|
const na: Nonce;
|
|
|
|
const sid: SessionID;
|
|
|
|
const pms: Nonce;
|
|
|
|
var nb: Nonce;
|
|
|
|
var pb: Params;
|
|
|
|
|
|
|
|
send_1( a,b, a,na,sid,pa );
|
|
|
|
read_2( b,a, nb,sid,pb );
|
|
|
|
read_3( b,a, CERT(b) );
|
|
|
|
send_4( a,b, CERT(a) );
|
|
|
|
send_5( a,b, { pms }pk(b) );
|
|
|
|
send_6( a,b, { hash(nb,b,pms) }sk(a) );
|
|
|
|
send_7( a,b, { F }CLIENTK );
|
|
|
|
read_8( b,a, { F }SERVERK );
|
|
|
|
|
2005-04-21 13:13:04 +01:00
|
|
|
claim_9a(a, Secret, SERVERK);
|
|
|
|
claim_9b(a, Secret, CLIENTK);
|
2004-02-20 11:37:28 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
role b
|
|
|
|
{
|
|
|
|
var na: Nonce;
|
|
|
|
var sid: SessionID;
|
|
|
|
var pms: Nonce;
|
|
|
|
const nb: Nonce;
|
|
|
|
const pb: Params;
|
|
|
|
|
|
|
|
read_1( a,b, a,na,sid,pa );
|
|
|
|
send_2( b,a, nb,sid,pb );
|
|
|
|
send_3( b,a, CERT(b) );
|
|
|
|
read_4( a,b, CERT(a) );
|
|
|
|
read_5( a,b, { pms }pk(b) );
|
|
|
|
read_6( a,b, { hash(nb,b,pms) }sk(a) );
|
|
|
|
read_7( a,b, { F }CLIENTK );
|
|
|
|
send_8( b,a, { F }SERVERK );
|
|
|
|
|
2005-04-21 13:13:04 +01:00
|
|
|
claim_10a(b, Secret, SERVERK);
|
|
|
|
claim_10b(b, Secret, CLIENTK);
|
2004-02-20 11:37:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Alice, Bob, Eve: Agent;
|
|
|
|
|
|
|
|
untrusted Eve;
|
|
|
|
compromised sk(Eve);
|
|
|
|
const ne: Nonce;
|
|
|
|
const side: SessionID;
|
|
|
|
const pe: Params;
|
|
|
|
|
|
|
|
run tlspaulson.a(Agent,Agent);
|
|
|
|
run tlspaulson.b(Agent,Agent);
|
|
|
|
run tlspaulson.a(Agent,Agent);
|
|
|
|
run tlspaulson.b(Agent,Agent);
|
|
|
|
run tlspaulson.a(Agent,Agent);
|
|
|
|
run tlspaulson.b(Agent,Agent);
|
|
|
|
run tlspaulson.a(Agent,Agent);
|
|
|
|
run tlspaulson.b(Agent,Agent);
|
|
|
|
|