source: examples/python_tests/acme_rockets_intersection_rt0/setup.py @ 5f551d3

mei_rt2mei_rt2_fix_1
Last change on this file since 5f551d3 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: 620 bytes
Line 
1#!/usr/bin/env python
2
3"""
4  Setup 4 principal ID credentials
5
6  Acme, Coyote, WarnerBros and Batman
7
8"""
9import os
10import ABAC
11
12ctxt = ABAC.Context()
13
14alpha=ABAC.ID("Acme", 0)
15alpha.id_write_cert("Acme_ID.pem")
16alpha.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
22warnerbros=ABAC.ID("WarnerBros", 0)
23warnerbros.id_write_cert("WarnerBros_ID.pem")
24warnerbros.id_write_privkey("WarnerBros_private.pem")
25
26batman=ABAC.ID("Batman", 0)
27batman.id_write_cert("Batman_ID.pem")
28batman.id_write_privkey("Batman_private.pem")
29
30
Note: See TracBrowser for help on using the repository browser.