diff options
author | Rob Austein <sra@hactrn.net> | 2007-03-20 11:47:48 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-03-20 11:47:48 +0000 |
commit | c0db176b4ccfd434413b22b716cbd4787ba18ca1 (patch) | |
tree | e9dee1da1bfe6b8bfff3a5c05e9b5e384c3d7b45 | |
parent | 9bfc87d3a616527582cb7abfb835d668ee90131d (diff) |
checkpoint
svn path=/scripts/regeng-api; revision=505
-rw-r--r-- | scripts/regeng-api | 32 |
1 files changed, 23 insertions, 9 deletions
diff --git a/scripts/regeng-api b/scripts/regeng-api index 7401c1fa..7cd30acb 100644 --- a/scripts/regeng-api +++ b/scripts/regeng-api @@ -139,16 +139,30 @@ (get-ca-parent-biz-signing-context :cust-id 42) => (biz-signing-context) +(create-child :cust-id 42) +=> (child) + +(destroy-child :cust-id 42 + :child foo) +=> () + +(set-child-ta :cust-id 42 + :child foo + :ta bar) +=> () + +(get-child-ta :cust-id 42 + :child foo) +=> (ta) + +(set-child-biz-signing-context :cust-id 42 + :child foo + :biz-signing-context bar) + +(get-child-biz-signing-context :cust-id 42 + :child foo) +=> (signing-context) -;; (set-parent-ta) -;; (set-parent-uri) -;; (set-parent-biz-signing-context) -;; -;; (create-child) -;; (destroy-child) -;; (set-child-ta) -;; (set-child-biz-signing-context) -;; ;; (add-child-to-ca) ;; (del-child-from-ca) ;; (list-ca-children) |