Skip to content

Commit 8f40cdd

Browse files
committed
[tests/full] Note TODOs
1 parent 9c3a65b commit 8f40cdd

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
@@ -219,6 +219,8 @@ fn main() {
219219
print!("test_keygen_signing(EcdsaP256Sha256)...");
220220
test_keygen_signing(&conn_pool, GenerateParams::EcdsaP256Sha256);
221221
println!("ok");
222+
223+
// TODO: 'test_keygen_signing()' with more algorithms.
222224
}
223225

224226
/// Test that key generation and signing works.
@@ -260,4 +262,8 @@ fn test_keygen_signing(pool: &SyncConnPool, key_params: GenerateParams) {
260262

261263
// Verify the signature.
262264
pubkey.verify(data, sig).unwrap();
265+
266+
// TODO: Delete the key? Does the public part need deletion?
267+
//domain_kmip::sign::destroy("A-pub", pool.clone()).unwrap();
268+
//domain_kmip::sign::destroy("A-priv", pool.clone()).unwrap();
263269
}

0 commit comments

Comments
 (0)