mei_rt2mei_rt2_fix_1
Last change
on this file since 549656e was
5110d42,
checked in by Mei <mei@…>, 13 years ago
|
1) reorganized the test directory to include python tests
2) attribute via api and principal via api from python scripts is
working (although there is a annoying seg fault at the very end
that must be related to something not been dup()ed.. need to wait
for c example to debug it)
3) able to query via api
4) replicated access_rt2 example in python and the query result matches
5) expanded api to make it easier to generate rt2 structure
|
-
Property mode set to
100755
|
File size:
932 bytes
|
Line | |
---|
1 | |
---|
2 | # file_read_rt2_typed |
---|
3 | |
---|
4 | pwd=`pwd` |
---|
5 | |
---|
6 | eloc=${ABAC_PROVER_PATH} |
---|
7 | keyloc=$pwd |
---|
8 | |
---|
9 | alpha=`creddy --keyid --cert $keyloc/Alpha_ID.pem` |
---|
10 | bob=`creddy --keyid --cert $keyloc/Bob_ID.pem` |
---|
11 | maryann=`creddy --keyid --cert $keyloc/Maryann_ID.pem` |
---|
12 | alpha=`creddy --keyid --cert $keyloc/Alpha_ID.pem` |
---|
13 | |
---|
14 | read_fileA="[keyid:$alpha].role:read([urn:'file://fileA'])" |
---|
15 | bob_prin="[keyid:$bob]" |
---|
16 | maryann_prin="[keyid:$maryann]" |
---|
17 | |
---|
18 | ## dump all credentials -- |
---|
19 | $eloc/abac_prover_yap --keystore $keyloc --dump creds_dump |
---|
20 | |
---|
21 | #[keyid:Alpha].role:read([urn:'file://fileA']) <-?- [keyid:Bob] (yes) |
---|
22 | echo " " |
---|
23 | echo "===good============ alpha.read(fileA) <- Bob" |
---|
24 | $eloc/abac_prover_yap --keystore $keyloc --role "$read_fileA" --principal "$bob_prin" |
---|
25 | |
---|
26 | #[keyid:Alpha].role:read([urn:'file://fileA']) <-?- [keyid:Maryann] (no) |
---|
27 | echo " " |
---|
28 | echo "===bad============ alpha.read(fileA) <- Maryann" |
---|
29 | $eloc/abac_prover_yap --keystore $keyloc --role "$read_fileA" --principal "$maryann_prin" |
---|
30 | |
---|
Note: See
TracBrowser
for help on using the repository browser.