jasmin icon indicating copy to clipboard operation
jasmin copied to clipboard

Language for high-assurance and high-speed cryptography

Results 201 jasmin issues
Sort by recently updated
recently updated
newest added

Is this something useful? Are the options complex enough so that it is worth spending some time on that?

enhancement

For loops whose bounds are not constant are not inlined. Consider, for instance: ``` export fn main (reg u64 io) -> reg u64 { inline int i; reg u64 res;...

In the following code ``` fn f () -> reg u64 { reg u64 r; r = 0; return r; } export fn main (reg u64 x) -> reg u64...

If we compile the following function in the `glob_array3` branch ``` inline fn sum (stack u64[2] a) -> stack u64 { reg u64 r; r = a[0]; r += a[1];...

type-checking

Add `ROR` operator similar to `` for right shifts. This will allow us to avoid using intrinsics to get register shifts in ARM.

enhancement

There is a lot of duplication between the specific W8.SHIFT theory and the generic BitWordSH theory. There is an attempt there: ca3785e63d8ae2d1315630c608e7bb6bb1506e33 but that triggers an EasyCrypt bug.

enhancement
EasyCrypt

Requires https://github.com/jasmin-lang/coqword/pull/22

Security annotations for the speculative-ct checker are translated (weakened) when handled by the (non-speculative) CT checker.

constant-time

This is a feature request to have the option to initialize a variable at declaration time, e.g. `reg u64 res = 1;`.

TODO

Let’s make some room for a better interface.