scyther/testing/samasc-broken.spdl

35 lines
467 B
Plaintext
Raw Permalink Normal View History

2006-11-21 13:40:50 +00:00
/*
Samasc broken
*/
usertype Key;
const pk: Function;
secret sk: Function;
inversekeys (pk,sk);
protocol samascbroken(I,R)
{
role R
{
fresh nr: Nonce;
2006-11-21 13:40:50 +00:00
var kir: Key;
2012-05-02 22:26:41 +01:00
recv_!1a (I,R, { kir,I }pk(R) );
send_!1b (R,I, {nr,R}pk(I) );
2006-11-21 13:40:50 +00:00
/* Commenting out these two lines yields an attack: */
2012-05-02 22:26:41 +01:00
recv_!2a (I,R, { nr }kir );
send_!2b (R,I, { I,R,nr }kir );
2006-11-21 13:40:50 +00:00
2012-05-02 22:26:41 +01:00
recv_!3 (I,R, { I,R }kir );
2006-11-21 13:40:50 +00:00
claim_4 (R, Secret, kir );
}
}
untrusted e;
compromised sk(e);