0f54f2ed23
SPORE: - pk is not known to all agents, only pk(Simon) is known - Use new naming convention: - Protocol name starting with an @ means internal protocol - For non internal protocols naming is as follows: protocolname-variant^subprotocol For example: yahalom-Lowe^KeyCompromise meaning the key compromise sub protocol of the Lowe variant of the Yahalom protocol.
62 lines
1.0 KiB
Plaintext
62 lines
1.0 KiB
Plaintext
# Woo and Lam Pi 2
|
|
#
|
|
# Modelled after the description in the SPORE library
|
|
# http://www.lsv.ens-cachan.fr/spore/wooLamPi2.html
|
|
#
|
|
# Note:
|
|
# This protocol uses a ticket so scyther will only be able to verify
|
|
# the protocol using the ARACHNE engine (-a)
|
|
#
|
|
|
|
secret k: Function;
|
|
|
|
protocol woolamPi-2(I,R,S)
|
|
{
|
|
role I
|
|
{
|
|
var Nr: Nonce;
|
|
|
|
send_1(I,R, I);
|
|
read_2(R,I, Nr);
|
|
send_3(I,R, {I,Nr}k(I,S));
|
|
|
|
}
|
|
|
|
role R
|
|
{
|
|
const Nr: Nonce;
|
|
var T: Ticket;
|
|
|
|
read_1(I,R, I);
|
|
send_2(R,I, Nr);
|
|
read_3(I,R, T);
|
|
send_4(R,S, {I, T}k(R,S));
|
|
read_5(S,R, {I, Nr}k(R,S));
|
|
|
|
claim_R1(R,Nisynch);
|
|
}
|
|
|
|
role S
|
|
{
|
|
var Nr: Nonce;
|
|
|
|
read_4(R,S, {I, {I,Nr}k(I,S)}k(R,S));
|
|
send_5(S,R, {I,Nr}k(R,S));
|
|
}
|
|
}
|
|
|
|
const Alice,Bob,Eve,Simon: Agent;
|
|
const Te: Ticket;
|
|
const Ne: Nonce;
|
|
|
|
|
|
untrusted Eve;
|
|
compromised k(Eve,Simon);
|
|
|
|
run woolamPi-2.I (Agent,Agent,Simon);
|
|
run woolamPi-2.R (Agent,Agent,Simon);
|
|
run woolamPi-2.S (Agent,Agent,Simon);
|
|
|
|
|
|
|