source: examples/example_scripts/python/abac_keyid.py @ 0d6b61a

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

1) tested out python and perl test scripts along with

abac_chunk_t calls in libabac's abac.hh

  • Property mode set to 100755
File size: 599 bytes
Line 
1#!/usr/bin/env python
2
3"""
4  abac_keyid.py
5
6   To demonstrate how to use ABAC's api in python to access keyid of a
7principal credential
8
9   pre-condition: generate IceCream_ID.pem and IceCream_private.pem with
10           creddy --generate --cn IceCream
11
12   keyid of the loaded principal credential is printed
13
14"""
15
16from sys import argv, exit
17from ABAC import ID
18
19if len(argv) < 2:
20    print "Usage: abac_keyid.py <cert.pem>"
21    exit(1)
22
23id = None
24try:
25    print argv[1]
26    id = ID(argv[1])
27except Exception, e:
28    print "Problem loading cert: %s" % e
29    exit(1)
30
31print id.keyid()
32print "okay"
33
Note: See TracBrowser for help on using the repository browser.