We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20ff9d1 + 4779a8b commit acb4550Copy full SHA for acb4550
api_key_stamper/src/lib.rs
@@ -7,11 +7,13 @@ use base64::Engine;
7
use k256::ecdsa::{
8
Signature as K256Signature, SigningKey as K256SigningKey, VerifyingKey as K256VerifyingKey,
9
};
10
-use p256::ecdsa::signature::Signer as _;
11
-use p256::ecdsa::{
12
- Signature as P256Signature, SigningKey as P256SigningKey, VerifyingKey as P256VerifyingKey,
+use p256::{
+ ecdsa::{
+ signature::Signer as _, Signature as P256Signature, SigningKey as P256SigningKey,
13
+ VerifyingKey as P256VerifyingKey,
14
+ },
15
+ SecretKey,
16
-use p256::SecretKey;
17
use rand_core::OsRng;
18
use serde::Serialize;
19
use thiserror::Error;
0 commit comments