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:
372 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | """ |
---|
4 | See README for the semantics. |
---|
5 | sets up 2 (Acme, Coyote) principal ID credentials |
---|
6 | """ |
---|
7 | import os |
---|
8 | import ABAC |
---|
9 | |
---|
10 | ctxt = ABAC.Context() |
---|
11 | |
---|
12 | acme=ABAC.ID("Acme", 0) |
---|
13 | acme.id_write_cert("Acme_ID.pem") |
---|
14 | acme.id_write_privkey("Acme_private.pem") |
---|
15 | |
---|
16 | coyote=ABAC.ID("Coyote", 0) |
---|
17 | coyote.id_write_cert("Coyote_ID.pem") |
---|
18 | coyote.id_write_privkey("Coyote_private.pem") |
---|
19 | |
---|
Note: See
TracBrowser
for help on using the repository browser.