source: swig/perl/abac_keyid.pl @ f89b991

mei_rt2
Last change on this file since f89b991 was 5338995, checked in by Mei <mei@…>, 12 years ago

1) change names for the sample scripts under swig

  • Property mode set to 100755
File size: 298 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 "Problem loading cert: $@";
14    exit;
15}
16
17print $id->id_keyid, "\n";
Note: See TracBrowser for help on using the repository browser.