727e813c77
Not everything is fixed yet. However, we fixed: - 'const' -> 'fresh' - Removed lines specifying 'runs' - Removed some specifications of compromised Eve and its long-term keys being compromised.
25 lines
242 B
Plaintext
25 lines
242 B
Plaintext
const pk: Function;
|
|
secret sk: Function;
|
|
inversekeys (pk,sk);
|
|
|
|
protocol carkeybroken(I,R)
|
|
{
|
|
role I
|
|
{
|
|
fresh ni: Nonce;
|
|
|
|
send_1(I,R, {ni}sk(I) );
|
|
}
|
|
|
|
role R
|
|
{
|
|
var ni: Nonce;
|
|
|
|
read_1(I,R, {ni}sk(I) );
|
|
claim_2(R,Nisynch);
|
|
}
|
|
}
|
|
|
|
|
|
|