1 | #!/bin/sh |
---|
2 | # |
---|
3 | # This demonstrates assigning objects to object sets (osets) based on their |
---|
4 | # membership in other sets. In this case there are 3 prinicpals. Mary and Bob |
---|
5 | # are encoding what fruits they are willing to eat in the oset Bob.what2eat and |
---|
6 | # Mary.what2eat. Ralphs is defining the prices of the fruits it sells by |
---|
7 | # assigning them to osets parameterized by price. |
---|
8 | # |
---|
9 | # Credential 1 lays out Mary's policy - she will eat fruits that cost less that |
---|
10 | # or equal to 2.00. Bob will eat fruits that cost between 1.00 and 5.00, as |
---|
11 | # laid out in Credential 2. Strictly speaking Bob and Mary's ruls apply to |
---|
12 | # prices assigned by Ralphs. Credentials 3-6 are Ralph's price assignments: |
---|
13 | # |
---|
14 | # Fruit Price Credential |
---|
15 | # apple 1.50 3 |
---|
16 | # kiwi 1.50 4 |
---|
17 | # black rsaberry 2.50 5 |
---|
18 | # navel ornage 0.50 6 |
---|
19 | # |
---|
20 | # The attached ./run_query file proves that Mary will eat a naval orange and a kiwi, |
---|
21 | # and that Bob will not eat a navel orange (too cheap). It also proves a apple |
---|
22 | # is priced at 1.50 and that it cannot prove that a green apple is priced at |
---|
23 | # 1.50 (we don't know anything about green apples). |
---|
24 | |
---|
25 | # fruits_rt2_typed |
---|
26 | |
---|
27 | # mary.what2eat<-?-navel orange good |
---|
28 | # mary.what2eat<-?-kiwi good |
---|
29 | # bob.what2eat<-?-navel orange bad |
---|
30 | # ralphs.fruitprice(1.50)<-?-apple good |
---|
31 | # ralphs.fruitprice(1.50)<-?-green apple bad |
---|
32 | |
---|
33 | creddy --generate --cn Mary |
---|
34 | creddy --generate --cn Bob |
---|
35 | creddy --generate --cn Ralphs |
---|
36 | |
---|
37 | mary_keyid=`creddy --keyid --cert Mary_ID.pem` |
---|
38 | bob_keyid=`creddy --keyid --cert Bob_ID.pem` |
---|
39 | ralphs_keyid=`creddy --keyid --cert Ralphs_ID.pem` |
---|
40 | |
---|
41 | fruitprice_qP="fruitprice([float:?P:[..2.00]])" |
---|
42 | fruitprice_qP_2="fruitprice([float:?P:[1.00..5.00]])" |
---|
43 | |
---|
44 | # [keyid:mary].oset:what2eat |
---|
45 | # <- [keyid:ralphs].oset:fruitprice([float:?P:[..2.00]]) |
---|
46 | # Credential 1 |
---|
47 | creddy --attribute \ |
---|
48 | --issuer Mary_ID.pem --key Mary_private.pem --oset "what2eat" \ |
---|
49 | --subject-cert Ralphs_ID.pem --subject-oset "$fruitprice_qP" \ |
---|
50 | --out mary_what2eat__ralphs_fruitprice_qP_attr.der |
---|
51 | |
---|
52 | # [keyid:bob].oset:what2eat |
---|
53 | # <- [keyid:ralphs].oset:fruitprice([float:?P:[1.00..5.00]]) |
---|
54 | # Credential 2 |
---|
55 | creddy --attribute \ |
---|
56 | --issuer Bob_ID.pem --key Bob_private.pem --oset "what2eat" \ |
---|
57 | --subject-cert Ralphs_ID.pem --subject-oset "$fruitprice_qP_2" \ |
---|
58 | --out bob_what2eat__ralphs_fruitprice_qP_2_attr.der |
---|
59 | |
---|
60 | # [keyid:ralphs].oset:fruitprice([float:1.50]) <- [string:'apple'] |
---|
61 | # Credential 3 |
---|
62 | creddy --attribute \ |
---|
63 | --issuer Ralphs_ID.pem --key Ralphs_private.pem \ |
---|
64 | --oset "fruitprice([float:1.50])" \ |
---|
65 | --subject-obj "[string:'apple']" \ |
---|
66 | --out Ralphs_fruitprice__apple_attr.der |
---|
67 | |
---|
68 | # [keyid:ralphs].oset:fruitprice([float:1.50]) <- [string:'kiwi'] |
---|
69 | # Credential 4 |
---|
70 | creddy --attribute \ |
---|
71 | --issuer Ralphs_ID.pem --key Ralphs_private.pem \ |
---|
72 | --oset "fruitprice([float:1.50])" \ |
---|
73 | --subject-obj "[string:'kiwi']" \ |
---|
74 | --out Ralphs_fruitprice__kiwi_attr.der |
---|
75 | |
---|
76 | |
---|
77 | # [keyid:ralphs].oset:fruitprice([float:2.50]) <- [string:'black rasberry'] |
---|
78 | # Credential 5 |
---|
79 | creddy --attribute \ |
---|
80 | --issuer Ralphs_ID.pem --key Ralphs_private.pem \ |
---|
81 | --oset "fruitprice([float:2.50])" \ |
---|
82 | --subject-obj "[string:'black rasberry']" \ |
---|
83 | --out Ralphs_fruitprice__black_rasberry_attr.der |
---|
84 | |
---|
85 | # [keyid:ralphs].oset:fruitprice([float:0.50]) <- [string:'navel orange'] |
---|
86 | # Credential 6 |
---|
87 | creddy --attribute \ |
---|
88 | --issuer Ralphs_ID.pem --key Ralphs_private.pem \ |
---|
89 | --oset "fruitprice([float:0.50])" \ |
---|
90 | --subject-obj "[string:'navel orange']" \ |
---|
91 | --out Ralphs_fruitprice__navel_orange_attr.der |
---|
92 | |
---|
93 | ##################################################################### |
---|
94 | # mary.what2eat <- ralphs.fruitsprice(?P:[..2.00]) |
---|
95 | # [keyid:mary].oset:what2eat |
---|
96 | # <- [keyid:ralphs].oset:fruitprice([float:?P:[..2.00]]) |
---|
97 | # |
---|
98 | # bob.what2eat <- ralphs.fruitsprice(?P:[1.00..5.00]) |
---|
99 | # [keyid:bob].oset:what2eat |
---|
100 | # <- [keyid:ralphs].oset:fruitprice([float:?P:[1.00..5.00]]) |
---|
101 | # |
---|
102 | # ralphs.fruitprice(1.50)<-apple |
---|
103 | # [keyid:ralphs].oset:fruitprice([float:1.50]) <- [string:'apple'] |
---|
104 | # |
---|
105 | # ralphs.fruitprice(2.50)<-black rasberry |
---|
106 | # [keyid:ralphs].oset:fruitprice([float:2.50]) <- [string:'black rasberry'] |
---|
107 | # |
---|
108 | # ralphs.fruitprice(0.50)<-navel orange |
---|
109 | # [keyid:ralphs].oset:fruitprice([float:0.50]) <- [string:'navel orange'] |
---|
110 | # |
---|
111 | |
---|