abac0-leakabac0-meimei-idmei-rt0-nmei_rt0tvf-new-xml
Last change
on this file since c00fcc3 was
be6cb41,
checked in by Mei <mei@…>, 12 years ago
|
1) forgot to add the new files
|
-
Property mode set to
100755
|
File size:
639 bytes
|
Rev | Line | |
---|
[be6cb41] | 1 | #!/usr/bin/env python |
---|
| 2 | |
---|
| 3 | """ |
---|
| 4 | See README for the semantics. This creates four principals used |
---|
| 5 | by the example. |
---|
| 6 | |
---|
| 7 | """ |
---|
| 8 | import os |
---|
| 9 | import ABAC |
---|
| 10 | |
---|
| 11 | ctxt = ABAC.Context() |
---|
| 12 | |
---|
| 13 | acme=ABAC.ID("Acme", 0) |
---|
| 14 | acme.write_cert_file("Acme_ID.pem") |
---|
| 15 | acme.write_privkey_file("Acme_private.pem") |
---|
| 16 | |
---|
| 17 | coyote=ABAC.ID("Coyote", 0) |
---|
| 18 | coyote.write_cert_file("Coyote_ID.pem") |
---|
| 19 | coyote.write_privkey_file("Coyote_private.pem") |
---|
| 20 | |
---|
| 21 | warnerbros=ABAC.ID("WarnerBros", 0) |
---|
| 22 | warnerbros.write_cert_file("WarnerBros_ID.pem") |
---|
| 23 | warnerbros.write_privkey_file("WarnerBros_private.pem") |
---|
| 24 | |
---|
| 25 | batman=ABAC.ID("Batman", 0) |
---|
| 26 | batman.write_cert_file("Batman_ID.pem") |
---|
| 27 | batman.write_privkey_file("Batman_private.pem") |
---|
| 28 | |
---|
Note: See
TracBrowser
for help on using the repository browser.