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 1a4b4d8 commit dea823fCopy full SHA for dea823f
tests/full.rs
@@ -219,6 +219,8 @@ fn main() {
219
print!("test_keygen_signing(EcdsaP256Sha256)...");
220
test_keygen_signing(&conn_pool, GenerateParams::EcdsaP256Sha256);
221
println!("ok");
222
+
223
+ // TODO: 'test_keygen_signing()' with more algorithms.
224
}
225
226
/// Test that key generation and signing works.
@@ -260,4 +262,8 @@ fn test_keygen_signing(pool: &SyncConnPool, key_params: GenerateParams) {
260
262
261
263
// Verify the signature.
264
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();
269
0 commit comments