source: examples/creddy_tests/attribute_rule.sh @ 7e07118

abac0-leakabac0-meimei-idmei-rt0-nmei_rt0tvf-new-xml
Last change on this file since 7e07118 was 9e063cb, checked in by Mei <mei@…>, 11 years ago

1) test out using encrypted private key to generate id credential

  • Property mode set to 100755
File size: 647 bytes
Line 
1#!/bin/sh
2
3#attribute_rule.sh
4
5pwd=`pwd`
6eloc=`which creddy | sed 's/\/creddy//'`
7if [ "$eloc" = "" ]; then
8  echo "ERROR: creddy is not in the search path!!!"
9  exit 1
10fi
11
12$eloc/creddy --generate --cn Bigbird 1>/dev/null 2>& 1
13$eloc/creddy --generate --cn Coyote 1>/dev/null 2>& 1
14
15bigbird=`creddy --keyid --cert Bigbird_ID.pem`
16coyote=`creddy --keyid --cert Coyote_ID.pem`
17
18rule="$coyote.sneaky_friend<-$bigbird"
19
20$eloc/creddy --attribute \
21       --issuer Coyote_ID.pem --key Coyote_private.pem \
22       --attrrule "$rule" \
23       --out Coyote_sneakyFriend__Bigbird_attr.xml
24
25$eloc/creddy --roles --cert Coyote_sneakyFriend__Bigbird_attr.xml
26
Note: See TracBrowser for help on using the repository browser.