source: examples/python_tests/acme_friend_rt1/setup.py @ 7211a95

mei_rt2mei_rt2_fix_1
Last change on this file since 7211a95 was 7211a95, checked in by Mei <mei@…>, 12 years ago

1) add more python examples
2) add the missing linking role and linking oset api calls
3) fix the output of time typed data term/oset obj in typed_string format

(transform back from yap time format to our ddddddddTdddddd format

  • Property mode set to 100755
File size: 645 bytes
Line 
1#!/usr/bin/env python
2
3"""
4  Setup 4 principal ID credentials
5
6  Acme, Coyote, Roadrunner and Jackrabbit
7
8"""
9import os
10import ABAC
11
12ctxt = ABAC.Context()
13
14acme=ABAC.ID("Acme", 0)
15acme.id_write_cert("Acme_ID.pem")
16acme.id_write_privkey("Acme_private.pem")
17
18coyote=ABAC.ID("Coyote", 0)
19coyote.id_write_cert("Coyote_ID.pem")
20coyote.id_write_privkey("Coyote_private.pem")
21
22roadrunner=ABAC.ID("Roadrunner", 0)
23roadrunner.id_write_cert("Roadrunner_ID.pem")
24roadrunner.id_write_privkey("Roadrunner_private.pem")
25
26jackrabbit=ABAC.ID("Jackrabbit", 0)
27jackrabbit.id_write_cert("Jackrabbit_ID.pem")
28jackrabbit.id_write_privkey("Jackrabbit_private.pem")
29
30
Note: See TracBrowser for help on using the repository browser.