mei_rt2mei_rt2_fix_1
Last change
on this file since 8798f04 was
373bf68,
checked in by Mei <mei@…>, 12 years ago
|
1) add the scaling test suite
|
-
Property mode set to
100755
|
File size:
338 bytes
|
Line | |
---|
1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | """ |
---|
4 | See README for the semantics. This creates principals |
---|
5 | used by the example. |
---|
6 | """ |
---|
7 | import os |
---|
8 | import ABAC |
---|
9 | |
---|
10 | ctxt = ABAC.Context() |
---|
11 | |
---|
12 | i=0 |
---|
13 | while i <= #VAL#: |
---|
14 | n="John%s"%i |
---|
15 | nid="%s_ID.pem"%n |
---|
16 | np="%s_private.pem"%n |
---|
17 | aD=ABAC.ID(n, 0) |
---|
18 | aD.id_write_cert(nid) |
---|
19 | aD.id_write_privkey(np) |
---|
20 | i = i+1 |
---|
21 | |
---|
22 | |
---|
23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.