1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +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

@ -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"