Replaced all tabs by spaces.

This commit is contained in:
gijs
2005-05-23 12:35:58 +00:00
parent b05843d690
commit 3cb999f820
39 changed files with 893 additions and 893 deletions

View File

@@ -14,18 +14,18 @@ secret k: Function;
protocol woolamPi2(I,R,S)
{
role I
{
var Nr: Nonce;
role I
{
var Nr: Nonce;
send_1(I,R, I);
send_1(I,R, I);
read_2(R,I, Nr);
send_3(I,R, {I,Nr}k(I,S));
}
role R
{
}
role R
{
const Nr: Nonce;
var T: Ticket;
@@ -36,15 +36,15 @@ protocol woolamPi2(I,R,S)
read_5(S,R, {I, Nr}k(R,S));
claim_R1(R,Nisynch);
}
}
role S
{
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;