- Fixes.
This commit is contained in:
@@ -18,9 +18,9 @@ protocol course2r890year0405ex3(X,Y,I)
|
||||
const ni: Nonce;
|
||||
|
||||
send_1(I,X, ni );
|
||||
read_2(X,I, { ni,I }sk(X) );
|
||||
read_2(X,I, { I,ni }sk(X) );
|
||||
send_3(I,Y, ni );
|
||||
read_4(Y,I, { I,ni }sk(Y) );
|
||||
read_4(Y,I, { ni,I }sk(Y) );
|
||||
|
||||
claim_i1(I,Niagree);
|
||||
claim_i2(I,Nisynch);
|
||||
@@ -31,7 +31,7 @@ protocol course2r890year0405ex3(X,Y,I)
|
||||
var nx: Nonce;
|
||||
|
||||
read_1(I,X, nx );
|
||||
send_2(X,I, { nx,I }sk(X) );
|
||||
send_2(X,I, { I,nx }sk(X) );
|
||||
}
|
||||
|
||||
role Y
|
||||
@@ -39,7 +39,7 @@ protocol course2r890year0405ex3(X,Y,I)
|
||||
var ny: Nonce;
|
||||
|
||||
read_3(I,Y, ny );
|
||||
send_4(Y,I, { I,ny }sk(Y) );
|
||||
send_4(Y,I, { ny,I }sk(Y) );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user