source: examples/python_tests/file_read_rt2/setup.py @ accd63d

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

1) add more doc to python_tests

  • Property mode set to 100755
File size: 592 bytes
Line 
1#!/usr/bin/env python
2
3"""
4See README for the semantics.  This creates principals
5used by the example.
6"""
7import os
8import ABAC
9
10ctxt = ABAC.Context()
11
12alphaID=ABAC.ID("Alpha", 0)
13alphaID.id_write_cert("Alpha_ID.pem")
14alphaID.id_write_privkey("Alpha_private.pem")
15
16bobID=ABAC.ID("Bob", 0)
17bobID.id_write_cert("Bob_ID.pem")
18bobID.id_write_privkey("Bob_private.pem")
19
20maryannID=ABAC.ID("Maryann", 0)
21maryannID.id_write_cert("Maryann_ID.pem")
22maryannID.id_write_privkey("Maryann_private.pem")
23
24joeID=ABAC.ID("Joe", 0)
25joeID.id_write_cert("Joe_ID.pem")
26joeID.id_write_privkey("Joe_private.pem")
Note: See TracBrowser for help on using the repository browser.