source: examples/passphrase_tests/python/acme_rockets_rt0/setup.py @ 08b8da7

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

1) modified code all around to add support for encrypted private key for

ID credential

2) add new abac_key_t structure (abac_key.c)
3) add new keycheck option to creddy
4) add 2 new test suites

  • Property mode set to 100755
File size: 359 bytes
Line 
1#!/usr/bin/env python
2
3"""
4See README for the semantics.
5sets up 2 (Acme, Coyote) principal ID credentials
6"""
7import os
8import ABAC
9
10ctxt = ABAC.Context()
11
12acme=ABAC.ID("Acme", 0, "Acme_private.pem", "pfile")
13acme.id_write_cert("Acme_ID.pem")
14
15coyote=ABAC.ID("Coyote", 0)
16coyote.id_write_cert("Coyote_ID.pem")
17coyote.id_write_privkey("Coyote_private.pem")
18
Note: See TracBrowser for help on using the repository browser.