- Updates for the new claims stuff.

This commit is contained in:
ccremers
2004-02-22 13:16:53 +00:00
parent 59f61abb9f
commit 95f8558514
16 changed files with 29 additions and 29 deletions

View File

@@ -12,7 +12,7 @@ protocol ns3(I,R)
send_1(I,R, {I,ni}pk(R) );
read_2(R,I, {ni,nr}pk(I) );
send_3(I,R, {nr}pk(R) );
claim(I,nr);
claim(I,Secret,nr);
}
role R
@@ -23,7 +23,7 @@ protocol ns3(I,R)
read_1(I,R, {I,ni}pk(R) );
send_2(R,I, {ni,nr}pk(I) );
read_3(I,R, {nr}pk(R) );
claim(I,ni);
claim(I,Secret,ni);
}
}