We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7358fa6 commit 2972f78Copy full SHA for 2972f78
cryptoki-rustcrypto/src/ecdsa.rs
@@ -182,8 +182,6 @@ where
182
<<C as ecdsa::elliptic_curve::Curve>::FieldBytesSize as Add>::Output: ArrayLength<u8>,
183
{
184
fn try_sign(&self, msg: &[u8]) -> Result<Signature<C>, signature::Error> {
185
- println!("try sign");
186
-
187
let msg = C::Digest::digest(msg);
188
189
let bytes = self
cryptoki-rustcrypto/tests/ecdsa.rs
@@ -51,10 +51,6 @@ fn sign_verify() -> TestResult {
51
let priv_key_template = vec![
52
Attribute::Token(true),
53
Attribute::Private(true),
54
- //Attribute::KeyType(KeyType::EC),
55
- //Attribute::EcParams(secp256r1_oid),
56
- //Attribute::Sensitive(true),
57
- //Attribute::Extractable(false),
58
Attribute::Sign(true),
59
Attribute::Label(label.to_vec()),
60
];
0 commit comments