Skip to content

Commit 96998fb

Browse files
authored
Merge pull request #8 from fastlorenzo/main
feat: implemented various optimizations
2 parents 7f30a64 + 8c3ab67 commit 96998fb

13 files changed

Lines changed: 1974 additions & 962 deletions

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"ansible.python.interpreterPath": "/bin/python3"
3+
}

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pqcscan"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55

66
[dependencies]

TODO

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
- move TLS algo's etc to a JSON file like we do for SSH
1+
- [x] move TLS algo's etc to a JSON file like we do for SSH
22

3-
- add experimental TLS algo's form the draft/deprecated RFCs and add an
4-
optional flag to also scan for these when doing SSH scanning
3+
- [ ] add experimental TLS algo's form the draft/deprecated RFCs and add an
4+
optional flag to also scan for these when doing SSH scanning
55

6-
- update the SSH KEX database with links/hrefs to each algorithm so that we can
7-
display these in the HTML output nicely and link through.
6+
- [x] update the SSH KEX database with links/hrefs to each algorithm so that we can
7+
display these in the HTML output nicely and link through.
88

9-
- rewrite the templates to not be so ridicuously large for 10s of 1000s of
10-
results possibly do this by simply generating a JSON list of all the results
11-
and rewrite the templates that all the elements are built up via pure JS
12-
instead of generated HTML
9+
- [ ] rewrite the templates to not be so ridicuously large for 10s of 1000s of
10+
results possibly do this by simply generating a JSON list of all the results
11+
and rewrite the templates that all the elements are built up via pure JS
12+
instead of generated HTML
1313

14-
- add some combined JSON/CSV/XML export output on top of the HTML format
14+
- [ ] add some combined JSON/CSV/XML export output on top of the HTML format

0 commit comments

Comments
 (0)