scyther/spdl/SPORE/ccitt509-1.spdl

52 lines
1.2 KiB
Plaintext
Raw Normal View History

# CCITT X.509 (1)
#
# Modelled after the description in the SPORE library
# http://www.lsv.ens-cachan.fr/spore/ccittx509_1.html
#
# Note:
# The attack in SPORE is not found as this is not an attack against
# synchronisation, but an attack against the freshness of Xa and Ya
# which can currently not be modelled in scyther
#
const pk: Function;
secret sk: Function;
inversekeys(pk,sk);
usertype Timestamp;
protocol ccitt509-1(I,R)
{
2005-05-23 13:35:58 +01:00
role I
{
const Ta: Timestamp;
const Na,Xa,Ya: Nonce;
2005-05-23 13:35:58 +01:00
send_1(I,R, I,{Ta, Na, R, Xa,{Ya}pk(R)}sk(I));
# claim_2(I,Nisynch);
# This claim is useless as there are no preceding read events
2005-05-23 13:35:58 +01:00
}
role R
{
var Ta: Timestamp;
var Na,Xa,Ya: Nonce;
2005-05-23 13:35:58 +01:00
read_1(I,R, I,{Ta, Na, R, Xa,{Ya}pk(R)}sk(I));
claim_3(R,Nisynch);
# There should also be Fresh Xa and Fresh Ya claims here
2005-05-23 13:35:58 +01:00
}
}
const Alice,Bob,Eve: Agent;
untrusted Eve;
const ne: Nonce;
const te: Timestamp;
compromised sk(Eve);
# General scenario, 2 parallel runs of the protocol
run ccitt509-1.I(Agent,Agent);
run ccitt509-1.R(Agent,Agent);
run ccitt509-1.I(Agent,Agent);
run ccitt509-1.R(Agent,Agent);