mei_rt2mei_rt2_fix_1
Last change
on this file since 20eaefe was
f824a9e,
checked in by Mei <mei@…>, 12 years ago
|
1) add more doc to python_tests
|
-
Property mode set to
100755
|
File size:
403 bytes
|
Rev | Line | |
---|
[669b481] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | """ |
---|
[f824a9e] | 4 | See README for the semantics. This creates principals |
---|
| 5 | using ID and write out the credential file pair, cert/privkey |
---|
[669b481] | 6 | """ |
---|
| 7 | import os |
---|
| 8 | import ABAC |
---|
| 9 | |
---|
| 10 | ctxt = ABAC.Context() |
---|
| 11 | |
---|
| 12 | jackID=ABAC.ID("Jack", 0) |
---|
| 13 | jackID.id_write_cert("Jack_ID.pem") |
---|
| 14 | jackID.id_write_privkey("Jack_private.pem") |
---|
| 15 | |
---|
| 16 | bobID=ABAC.ID("Bob", 0) |
---|
| 17 | bobID.id_write_cert("Bob_ID.pem") |
---|
| 18 | bobID.id_write_privkey("Bob_private.pem") |
---|
| 19 | |
---|
| 20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.