- Improvement.

This commit is contained in:
ccremers 2004-08-30 14:39:52 +00:00
parent f5548b82cc
commit 44f394d098

View File

@ -1,8 +1,5 @@
usertype SessionKey; usertype SessionKey;
const pk: Function;
secret sk: Function;
secret k: Function; secret k: Function;
inversekeys (pk,sk);
protocol andrewBan(I,R) protocol andrewBan(I,R)
{ {
@ -42,7 +39,11 @@ const Alice,Bob,Eve: Agent;
untrusted Eve; untrusted Eve;
const ne: Nonce; const ne: Nonce;
const kee: SessionKey; const kee: SessionKey;
compromised sk(Eve); compromised k(Eve,Eve);
compromised k(Eve,Alice);
compromised k(Eve,Bob);
compromised k(Alice,Eve);
compromised k(Bob,Eve);
run andrewBan.I(Agent,Agent); run andrewBan.I(Agent,Agent);
run andrewBan.R(Agent,Agent); run andrewBan.R(Agent,Agent);