- Distinguishing example for prec sets computation; try using --pp=100,
possibly with -r2.
This commit is contained in:
parent
4f1c9ecb48
commit
db52ec77e6
33
spdl/carkey-broken-limited.spdl
Normal file
33
spdl/carkey-broken-limited.spdl
Normal file
@ -0,0 +1,33 @@
|
||||
const pk: Function;
|
||||
secret sk: Function;
|
||||
inversekeys (pk,sk);
|
||||
|
||||
protocol carkeybroken(I,R)
|
||||
{
|
||||
role I
|
||||
{
|
||||
const ni: Nonce;
|
||||
|
||||
send_1(I,R, I,R );
|
||||
claim_3(I,Nisynch);
|
||||
}
|
||||
|
||||
role R
|
||||
{
|
||||
var ni: Nonce;
|
||||
|
||||
read_1(I,R, I,R );
|
||||
claim_2(R,Nisynch);
|
||||
}
|
||||
}
|
||||
|
||||
const Alice,Bob,Eve: Agent;
|
||||
|
||||
untrusted Eve;
|
||||
const nc: Nonce;
|
||||
compromised sk(Eve);
|
||||
|
||||
run carkeybroken.I(Alice,Bob);
|
||||
run carkeybroken.R(Alice,Bob);
|
||||
run carkeybroken.I(Alice,Bob);
|
||||
run carkeybroken.R(Alice,Bob);
|
Loading…
Reference in New Issue
Block a user