diff options
| author | Divy Srivastava <dj.srivastava23@gmail.com> | 2023-10-30 08:25:12 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-30 16:25:12 +0100 |
| commit | 02cc37e05494e576ea8e120b9fe21b447da9546b (patch) | |
| tree | 746651ad336b663dd21923749d57db9313060c9e /ext/crypto/shared.rs | |
| parent | f3b580d001cfed0c6df55c5be3f89b4e58719421 (diff) | |
chore: upgrade rsa to 0.9 (#21016)
Diffstat (limited to 'ext/crypto/shared.rs')
| -rw-r--r-- | ext/crypto/shared.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/crypto/shared.rs b/ext/crypto/shared.rs index 109f51fa1..fdbdb23d9 100644 --- a/ext/crypto/shared.rs +++ b/ext/crypto/shared.rs @@ -8,9 +8,9 @@ use deno_core::error::AnyError; use deno_core::JsBuffer; use deno_core::ToJsBuffer; use elliptic_curve::sec1::ToEncodedPoint; +use p256::pkcs8::DecodePrivateKey; use rsa::pkcs1::DecodeRsaPrivateKey; use rsa::pkcs1::EncodeRsaPublicKey; -use rsa::pkcs8::DecodePrivateKey; use rsa::RsaPrivateKey; use serde::Deserialize; use serde::Serialize; |
