diff options
author | Rob Austein <sra@hactrn.net> | 2007-03-28 20:17:59 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-03-28 20:17:59 +0000 |
commit | 850aa15b99ca2728cf5fb9cb9988e8eaba4d4e2e (patch) | |
tree | a3d5bb9d32c43d0d760ea5cf99bbb2c2855f48cb | |
parent | 41874e89b3b0a8140e9a089ac99546aac97c6662 (diff) |
key-id => keypair-id, since that's what I think I meant anyway.
svn path=/docs/signing-engine-protocol; revision=543
-rw-r--r-- | docs/signing-engine-protocol | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/signing-engine-protocol b/docs/signing-engine-protocol index ab82367a..eea3680a 100644 --- a/docs/signing-engine-protocol +++ b/docs/signing-engine-protocol @@ -22,19 +22,19 @@ (create-keypair :cust-id 42 :length 2048) -=> (public-key key-id) +=> (public-key keypair-id) ;; Destroy a keypair. (destroy-keypair :cust-id 42 - :key-id key-id) + :keypair-id keypair-id) => () ;; List existing keypairs (list-keypairs :cust-id 42) -=> ((key-id public-key) - (key-id public-key) +=> ((keypair-id public-key) + (keypair-id public-key) ...) ;; Sign something. how-to-sign tells us both what signature method to @@ -45,5 +45,5 @@ (sign-thing :cust-id 42 :what-to-sign cert-without-signature :how-to-sign :cert-rsa/sha256 - :key-id key-id) + :keypair-id keypair-id) => (signed-thing) |