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.
1 parent 0273ed5 commit 9f71884Copy full SHA for 9f71884
tests/full.rs
@@ -205,6 +205,8 @@ fn main() {
205
print!("test_keygen_signing(EcdsaP256Sha256)...");
206
test_keygen_signing(&conn_pool, GenerateParams::EcdsaP256Sha256);
207
println!("ok");
208
+
209
+ // TODO: 'test_keygen_signing()' with more algorithms.
210
}
211
212
/// Test that key generation and signing works.
@@ -246,4 +248,8 @@ fn test_keygen_signing(pool: &SyncConnPool, key_params: GenerateParams) {
246
248
247
249
// Verify the signature.
250
pubkey.verify(data, sig).unwrap();
251
252
+ // TODO: Delete the key? Does the public part need deletion?
253
+ //domain_kmip::sign::destroy("A-pub", pool.clone()).unwrap();
254
+ //domain_kmip::sign::destroy("A-priv", pool.clone()).unwrap();
255
0 commit comments