Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[advisories]
# RUSTSEC-2023-0071 — "Marvin Attack" timing sidechannel in the `rsa` crate.
# No fixed upgrade is available upstream. The advisory affects RSA *private-key*
# decryption/signing, which leaks key bits through timing. BarqFlow is not exposed:
# * Transitively, `rsa` is pulled in by `sqlx-mysql`, which is unavoidable while
# MySQL support is enabled.
# * Our only direct use (crates/api/src/extensions.rs) is RSA-SHA256 signature
# *verification* with public keys, which does not perform the vulnerable
# private-key operations.
# Re-evaluate and remove this ignore once a patched `rsa` release ships.
ignore = ["RUSTSEC-2023-0071"]
73 changes: 36 additions & 37 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ reqwest.workspace = true
async-stream = "0.3"
futures-core = "0.3"
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
rsa = { version = "0.9", features = ["sha2", "pem"] }

Expand Down
Loading
Loading