Initial revision

This commit is contained in:
ccremers
2004-02-20 11:37:28 +00:00
parent 50f8b5874a
commit 0c17848f44
23 changed files with 205391 additions and 0 deletions

22
spdl/nsl7.spdl Normal file
View File

@@ -0,0 +1,22 @@
const pk: Function;
secret sk: Function;
inversekeys (pk,sk);
protocol nsl7(I,R)
{
role R
{
var ni;
const nr;
read_1(I,R, {I,ni}pk(R) );
send_2(R,I, {ni,nr,R}pk(I) );
read_3(I,R, {nr}pk(R) );
claim(I,nr,ni);
}
}
const Alice,Bob;
run nsl3.R(Alice,Bob);
run nsl3.R(Alice,Bob);