Skip to content

Commit 9f71884

Browse files
committed
[tests/full] Note TODOs
1 parent 0273ed5 commit 9f71884

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/full.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@ fn main() {
205205
print!("test_keygen_signing(EcdsaP256Sha256)...");
206206
test_keygen_signing(&conn_pool, GenerateParams::EcdsaP256Sha256);
207207
println!("ok");
208+
209+
// TODO: 'test_keygen_signing()' with more algorithms.
208210
}
209211

210212
/// Test that key generation and signing works.
@@ -246,4 +248,8 @@ fn test_keygen_signing(pool: &SyncConnPool, key_params: GenerateParams) {
246248

247249
// Verify the signature.
248250
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();
249255
}

0 commit comments

Comments
 (0)