1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Bump RustCrypto crates

Temporarily use a fork for RSA which has pkcs* bumped
This commit is contained in:
Quentin Gliech
2022-05-10 10:37:44 +02:00
parent f4353b660e
commit 44c1503bf2
4 changed files with 61 additions and 90 deletions

View File

@ -25,9 +25,9 @@ sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] }
lettre = { version = "0.10.0-rc.6", default-features = false, features = ["serde", "builder"] }
rand = "0.8.5"
rsa = "0.6.1"
p256 = { version = "0.10.1", features = ["ecdsa", "pem", "pkcs8"] }
pkcs8 = { version = "0.8.0", features = ["pem"] }
rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" }
p256 = { version = "0.11.0", features = ["ecdsa", "pem", "pkcs8"] }
pkcs8 = { version = "0.9.0", features = ["pem"] }
chacha20poly1305 = { version = "0.10.0-pre", features = ["std"] }
cookie = { version = "0.16.0", features = ["private", "key-expansion"] }
data-encoding = "2.3.2"

View File

@ -40,9 +40,9 @@ serde_urlencoded = "0.7.1"
argon2 = { version = "0.4.0", features = ["password-hash"] }
# Crypto, hashing and signing stuff
rsa = "0.6.1"
pkcs8 = { version = "0.8.0", features = ["pem"] }
elliptic-curve = { version = "0.11.12", features = ["pem"] }
rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" }
pkcs8 = { version = "0.9.0", features = ["pem"] }
elliptic-curve = { version = "0.12.0", features = ["pem"] }
sha2 = "0.10.2"
crc = "3.0.0"

View File

@ -12,23 +12,23 @@ base64ct = { version = "1.5.0", features = ["std"] }
chrono = { version = "0.4.19", features = ["serde"] }
crypto-mac = { version = "0.11.1", features = ["std"] }
digest = "0.10.3"
ecdsa = { version = "0.13.4", features = ["sign", "verify", "pem", "pkcs8"] }
elliptic-curve = { version = "0.11.12", features = ["ecdh", "pem"] }
ecdsa = { version = "0.14.1", features = ["sign", "verify", "pem", "pkcs8"] }
elliptic-curve = { version = "0.12.0", features = ["ecdh", "pem"] }
futures-util = "0.3.21"
hmac = "0.12.1"
http = "0.2.7"
p256 = { version = "0.10.1", features = ["ecdsa", "pem", "pkcs8"] }
pkcs1 = { version = "0.3.3", features = ["pem", "pkcs8"] }
pkcs8 = { version = "0.8.0", features = ["pem"] }
p256 = { version = "0.11.0", features = ["ecdsa", "pem", "pkcs8"] }
pkcs1 = { version = "0.4.0", features = ["pem", "pkcs8"] }
pkcs8 = { version = "0.9.0", features = ["pem", "std"] }
rand = "0.8.5"
rsa = "0.6.1"
rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" }
schemars = "0.8.8"
sec1 = "0.2.1"
sec1 = "0.3.0"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
serde_with = { version = "1.13.0", features = ["base64"] }
sha2 = "0.10.2"
signature = "1.4.0"
signature = "1.5.0"
thiserror = "1.0.31"
tokio = { version = "1.18.2", features = ["macros", "rt", "sync"] }
tower = { version = "0.4.12", features = ["util"] }