source: examples/alumni_rt1_typed/run_query @ 9335cfa

mei_rt2mei_rt2_fix_1
Last change on this file since 9335cfa was 9502c50, checked in by Mei <mei@…>, 12 years ago

1) rename examples' rr to run_query
2) updated some doc
3) add decode to creddy --roles and creddy --display --show so it will

show more useful attribute rule string

4) stub in the python script in one of the example directory

  • Property mode set to 100755
File size: 1.3 KB
RevLine 
[9502c50]1
2# alumni_rt1_typed
[10e1588]3
[c469edf]4pwd=`pwd`
5
6eloc=$pwd/../../libabac
7keyloc=$pwd
[10e1588]8
9stateU=`creddy --keyid --cert $keyloc/StateU_ID.pem`
10bob=`creddy --keyid --cert $keyloc/Bob_ID.pem`
11maryann=`creddy --keyid --cert $keyloc/Maryann_ID.pem`
12joe=`creddy --keyid --cert $keyloc/Joe_ID.pem`
13
[da5afdf]14stateU_foundingAlumni="[keyid:$stateU].role:foundingAlumni"
[10e1588]15bob_prin="[keyid:$bob]"
16maryann_prin="[keyid:$maryann]"
17joe_prin="[keyid:$joe]"
18
19# [keyid:stateU].role:foundingAlumni <-?- [keyid:Bob] (no)
20# [keyid:stateU].role:foundingAlumni <-?- [keyid:Maryann] (yes)
21
22## dump all credentials
[e88c95b]23$eloc/abac_prover_yap  --keystore $keyloc --dump creds_dump
[10e1588]24
[d5bbd3e]25# [keyid:stateU].role:foundingAlumni <-?- [keyid:Bob] (no)
[36b100a]26echo " "
[9502c50]27echo "===bad============ stateU.foundingAlumni <- Bob"
[10e1588]28$eloc/abac_prover_yap  --keystore $keyloc --role "$stateU_foundingAlumni" --principal "$bob_prin"
29
30# [keyid:stateU].role:foundingAlumni <-?- [keyid:Maryann] (yes)
[da5afdf]31# asking, isMember(pMaryann,role(pStateU,foundingAlumni),C).
[36b100a]32echo " "
[9502c50]33echo "===good============ stateU.foundingAlumni <- Maryann"
[10e1588]34$eloc/abac_prover_yap  --keystore $keyloc --role "$stateU_foundingAlumni" --principal "$maryann_prin"
35
36
[7b548fa]37# [keyid:stateU].role:foundingAlumni <-?- [keyid:Joe] (yes)
[2c01913]38echo " "
[9502c50]39echo "===good============ stateU.foundingAlumni <- Joe"
[2c01913]40$eloc/abac_prover_yap  --keystore $keyloc --role "$stateU_foundingAlumni" --principal "$joe_prin"
41
Note: See TracBrowser for help on using the repository browser.