mei_rt2mei_rt2_fix_1
Last change
on this file since 373bf68 was
f824a9e,
checked in by Mei <mei@…>, 12 years ago
|
1) add more doc to python_tests
|
-
Property mode set to
100755
|
File size:
479 bytes
|
Rev | Line | |
---|
[7211a95] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | """ |
---|
[f824a9e] | 4 | See README for the semantics. This creates principals |
---|
| 5 | used by the example. |
---|
[7211a95] | 6 | """ |
---|
| 7 | import os |
---|
| 8 | import ABAC |
---|
| 9 | |
---|
| 10 | ctxt = ABAC.Context() |
---|
| 11 | |
---|
| 12 | ralphsID=ABAC.ID("Ralphs", 0) |
---|
| 13 | ralphsID.id_write_cert("Ralphs_ID.pem") |
---|
| 14 | ralphsID.id_write_privkey("Ralphs_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 | maryID=ABAC.ID("Mary", 0) |
---|
| 21 | maryID.id_write_cert("Mary_ID.pem") |
---|
| 22 | maryID.id_write_privkey("Mary_private.pem") |
---|
Note: See
TracBrowser
for help on using the repository browser.