mei_rt2mei_rt2_fix_1
Last change
on this file since 20eaefe was
bea18ef,
checked in by Mei <mei@…>, 12 years ago
|
1) add more tiny prover tests in examples/example_scripts
2) reverted the changes to ABAC_VERSION in libabac's abac_util.c
|
-
Property mode set to
100755
|
File size:
921 bytes
|
Line | |
---|
1 | #!/usr/bin/perl |
---|
2 | |
---|
3 | use strict; |
---|
4 | use ABAC; |
---|
5 | use Getopt::Long; |
---|
6 | use Data::Dumper; |
---|
7 | $Data::Dumper::Indent = 1; |
---|
8 | |
---|
9 | my ($keystore, $role, $principal); |
---|
10 | GetOptions( |
---|
11 | 'keystore=s' => \$keystore, |
---|
12 | 'role=s' => \$role, |
---|
13 | 'principal=s' => \$principal, |
---|
14 | ) || usage(); |
---|
15 | |
---|
16 | usage() unless defined $keystore && defined $role && defined $principal; |
---|
17 | |
---|
18 | # code starts here |
---|
19 | |
---|
20 | my $ctx = ABAC::Context->new; |
---|
21 | $ctx->load_directory($keystore); |
---|
22 | |
---|
23 | my ($success, $credentials) = $ctx->query($role, $principal); |
---|
24 | |
---|
25 | if ($success) { |
---|
26 | print "Success\n"; |
---|
27 | } |
---|
28 | |
---|
29 | foreach my $credential (@$credentials) { |
---|
30 | printf "credential %s <- %s\n", |
---|
31 | $credential->head_string, |
---|
32 | $credential->tail_string; |
---|
33 | } |
---|
34 | |
---|
35 | sub usage { |
---|
36 | print "Usage: $0 \\\n"; |
---|
37 | print " --keystore <keystore> \\\n"; |
---|
38 | print " --role <role> --principal <principal> \\\n"; |
---|
39 | print " loads the keystore and runs the query role <-?- principal\n"; |
---|
40 | exit 1; |
---|
41 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.