1 | #!/bin/sh |
---|
2 | # |
---|
3 | # |
---|
4 | #Acme runs a testbed. They've delegated the authority to create |
---|
5 | #experiments to all their partners. The Globotron company is one such |
---|
6 | #partner. |
---|
7 | # |
---|
8 | # Acme.experiment_create <- Acme.partner.experiment_create |
---|
9 | # Acme.partner <- Globotron |
---|
10 | # |
---|
11 | #Globotron has delegated the authority to anyone an admin thinks is a |
---|
12 | #'power user'. |
---|
13 | # |
---|
14 | # Globotron.experiment_create <- Globotron.admin.power_user |
---|
15 | # |
---|
16 | #Alice is an admin, and her friend Bob is a power user: |
---|
17 | # |
---|
18 | # Globotron.admin <- Alice |
---|
19 | # Alice.power_user <- Bob |
---|
20 | # |
---|
21 | #From these credentials, it is possible to construct a proof graph |
---|
22 | #showing that Acme.experiment_create <- Bob. |
---|
23 | # |
---|
24 | #Note that there is a one-to-one correspondence with each credential |
---|
25 | #above and the attribute certificates below. |
---|
26 | # |
---|
27 | |
---|
28 | rm -rf *.pem *.xml |
---|
29 | |
---|
30 | creddy --generate --cn Acme |
---|
31 | |
---|
32 | creddy --generate --cn Globotron |
---|
33 | |
---|
34 | creddy --generate --cn Alice |
---|
35 | |
---|
36 | creddy --generate --cn Bob |
---|
37 | |
---|
38 | creddy --attribute \ |
---|
39 | --issuer Acme_ID.pem --key Acme_private.pem --role experiment_create \ |
---|
40 | --subject-cert Acme_ID.pem --subject-role partner.experiment_create \ |
---|
41 | --out Acme_experiment_create__Acme_partner_experiment_create_attr.xml |
---|
42 | |
---|
43 | creddy --attribute \ |
---|
44 | --issuer Acme_ID.pem --key Acme_private.pem --role partner \ |
---|
45 | --subject-cert Globotron_ID.pem \ |
---|
46 | --out Acme_partner__Globotron_attr.xml |
---|
47 | |
---|
48 | creddy --attribute \ |
---|
49 | --issuer Globotron_ID.pem --key Globotron_private.pem --role experiment_create \ |
---|
50 | --subject-cert Globotron_ID.pem --subject-role admin.power_user \ |
---|
51 | --out Globotron_experiment_create__Globotron_admin_power_user_attr.xml |
---|
52 | |
---|
53 | creddy --attribute \ |
---|
54 | --issuer Globotron_ID.pem --key Globotron_private.pem --role admin \ |
---|
55 | --subject-cert Alice_ID.pem \ |
---|
56 | --out Globotron_admin__Alice_attr.xml |
---|
57 | |
---|
58 | creddy --attribute \ |
---|
59 | --issuer Alice_ID.pem --key Alice_private.pem --role power_user \ |
---|
60 | --subject-cert Bob_ID.pem \ |
---|
61 | --out Alice_admin__Bob_attr.xml |
---|
62 | |
---|
63 | |
---|