source: examples/scaling_tests/daisychain/likes_python/base/SETUP.py @ 7e3f5e2

abac0-leakabac0-meimei-idmei-rt0-nmei_rt0tvf-new-xml
Last change on this file since 7e3f5e2 was 7e3f5e2, checked in by Mei <mei@…>, 11 years ago

1) converted daisychain scaling tests

  • Property mode set to 100755
File size: 342 bytes
Line 
1#!/usr/bin/env python
2
3"""
4See README for the semantics.  This creates principals
5used by the example.
6"""
7import os
8import ABAC
9
10ctxt = ABAC.Context()
11
12i=0
13while 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.write_cert_file(nid)
19     aD.write_privkey_file(np)
20     i = i+1
21
22
23
Note: See TracBrowser for help on using the repository browser.