diff options
author | Sean Michael Wykes <8363933+SeanWykes@users.noreply.github.com> | 2022-01-19 03:44:35 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-19 12:14:35 +0530 |
commit | 91399851809b2c1585b318d496e81f9683cd270b (patch) | |
tree | 65716b7831d41821e2058c72fec5cba2e80f28b2 /ext/crypto/ec_key.rs | |
parent | 77e58fe7f9fc20dabf77424efbd25ce332f8f59c (diff) |
feat(ext/crypto): implement pkcs8/JWK for P-384 curves (#13154)
Diffstat (limited to 'ext/crypto/ec_key.rs')
-rw-r--r-- | ext/crypto/ec_key.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/crypto/ec_key.rs b/ext/crypto/ec_key.rs index 3509f0aef..8302bb55d 100644 --- a/ext/crypto/ec_key.rs +++ b/ext/crypto/ec_key.rs @@ -28,8 +28,6 @@ pub struct ECPrivateKey<'a, C: elliptic_curve::Curve> { pub encoded_point: &'a [u8], } -#[allow(dead_code)] -///todo(@sean) - to be removed in #13154 impl<'a, C> ECPrivateKey<'a, C> where C: elliptic_curve::Curve + AlgorithmParameters, |