You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In fact, it is not only the MSF that is wrongly handled. The following program is accepted by the SCT checker (but fortunately rejected by the CT checker).
fn test_venv(#secret reg u64 s) {
reg u64 i r;
r = 0;
i = 0;
while {
r = s;
} (i < 10) {
r = 0;
i += 1;
}
[r] = 0;
}
The following program is secure but the S-CT checker rejects in with an incorrect argument.
Based on a report by Santiago (@sarranz).
The text was updated successfully, but these errors were encountered: