Commits on Source (22)
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
-
Per Lindgren authored
Showing
- .gitignore 3 additions, 0 deletions.gitignore
- .vscode/settings.json 43 additions, 0 deletions.vscode/settings.json
- CHANGELOG.md 17 additions, 0 deletionsCHANGELOG.md
- Cargo.toml 22 additions, 0 deletionsCargo.toml
- HOME_EXAM.md 181 additions, 0 deletionsHOME_EXAM.md
- README.md 109 additions, 6 deletionsREADME.md
- cargo_klee_examples/.gitignore 3 additions, 0 deletionscargo_klee_examples/.gitignore
- cargo_klee_examples/Cargo.toml 48 additions, 0 deletionscargo_klee_examples/Cargo.toml
- cargo_klee_examples/README.md 12 additions, 0 deletionscargo_klee_examples/README.md
- cargo_klee_examples/examples/array.rs 82 additions, 0 deletionscargo_klee_examples/examples/array.rs
- cargo_klee_examples/examples/cyccnt.rs 250 additions, 0 deletionscargo_klee_examples/examples/cyccnt.rs
- cargo_klee_examples/examples/get_sign.rs 106 additions, 0 deletionscargo_klee_examples/examples/get_sign.rs
- examples/get_sign.c 20 additions, 3 deletionsexamples/get_sign.c
- examples/get_sign.rs 203 additions, 0 deletionsexamples/get_sign.rs
- srp_analysis/Cargo.toml 9 additions, 0 deletionssrp_analysis/Cargo.toml
- srp_analysis/src/common.rs 72 additions, 0 deletionssrp_analysis/src/common.rs
- srp_analysis/src/main.rs 76 additions, 0 deletionssrp_analysis/src/main.rs
.gitignore
0 → 100644
.vscode/settings.json
0 → 100644
CHANGELOG.md
0 → 100644
Cargo.toml
0 → 100644
[package] | |||
name = "klee_tutorial" | |||
version = "0.1.0" | |||
authors = ["pln <Per Lindgren>"] | |||
edition = "2018" | |||
[dependencies.cstr_core] | |||
version = "0.2.2" | |||
default-features = false | |||
[profile.dev] | |||
panic = "abort" | |||
incremental = false # better optimization | |||
lto = true # better optimization | |||
codegen-units = 1 # better optimization | |||
[profile.release] | |||
panic = "abort" | |||
debug = true # better debugging | |||
incremental = false # better optimization | |||
lto = true # better optimization | |||
codegen-units = 1 # better optimization |
HOME_EXAM.md
0 → 100644
cargo_klee_examples/.gitignore
0 → 100644
cargo_klee_examples/Cargo.toml
0 → 100644
cargo_klee_examples/README.md
0 → 100644
cargo_klee_examples/examples/array.rs
0 → 100644
cargo_klee_examples/examples/cyccnt.rs
0 → 100644
cargo_klee_examples/examples/get_sign.rs
0 → 100644
examples/get_sign.rs
0 → 100644
srp_analysis/Cargo.toml
0 → 100644
srp_analysis/src/common.rs
0 → 100644
srp_analysis/src/main.rs
0 → 100644