Moved development protocol files to a better named directory.

This commit is contained in:
Cas Cremers
2012-11-15 13:40:14 +01:00
parent a911f56705
commit 6642782b0d
105 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
usertype String, World;
secret HelloWorld, k: String;
protocol hw(initiator,world)
{
role initiator
{
send_1(initiator, world, HelloWorld);
/* claim_2(initiator, Secret, HelloWorld); */
}
}
const Alice, Bob: Agent;
const Earth, Mars: World;
run hw.initiator(Agent,World);