source: tests/example_scripts/perl/abac_keyid.pl @ 3c30b59

abac0-leakabac0-mei
Last change on this file since 3c30b59 was ec550f7, checked in by Mei <mei@…>, 11 years ago

1) reworked how API doc is generated
2) tweak top level Makefile.am
3) loading issuer principal as side-effect of loading

an attribute credentials

4) add examples of GENI specific attribute credentials

and principal certificates into the regression testing

5) rename examples to tests

  • Property mode set to 100755
File size: 310 bytes
Line 
1#!/usr/bin/perl
2
3use ABAC;
4
5my $filename = shift || die "Usage: abac_keyid.pl <cert.pem>\n";
6
7my $id;
8eval {
9    # will throw a RuntimeException if it can't load the cert
10    $id = ABAC::ID->new($filename);
11};
12if ($@) {
13    print "ERROR, Problem loading cert: $@";
14    exit;
15}
16
17print $id->keyid, "    OKAY\n";
Note: See TracBrowser for help on using the repository browser.