high-assurance-rust icon indicating copy to clipboard operation
high-assurance-rust copied to clipboard

A free book about developing secure and robust systems software.

Results 12 high-assurance-rust issues
Sort by recently updated
recently updated
newest added

Hello! I'm looking at https://highassurance.rs/chp7/traits.html#the-map-get-api. The example with the `get` is never introducing the second generics K and V in the code example. ```rust /// Returns a reference to the...

Remove the word 'an' to improve the grammar.

Update the Community Contributors list.

Fix https://github.com/tnballo/high-assurance-rust/issues/23

Fix https://github.com/tnballo/high-assurance-rust/issues/45 The comment at the start of the SVG files disappeared when exporting with Draw.io ``` ``` Don't know if you want to add it back

Fix https://github.com/tnballo/high-assurance-rust/issues/46

In https://highassurance.rs/chp4/assure_stack_1.html#the-stack, the stack diagram show that the stack frame for the `square` function still exist under all the `recursive_count_down` stack frames. https://github.com/tnballo/high-assurance-rust/blob/main/src/chp4/stack_example.svg But in my understanding, the stack frame...

In the C code here https://highassurance.rs/chp4/attack_1.html#breaking-temporal-memory-safety-value-validity, ```c char* greeting = get_greeting(); size_t greeting_len = strlen(greeting); // Excludes null byte