-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Made application run properly. * Improved long description.
- Loading branch information
Showing
5 changed files
with
65 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,21 @@ | ||
This package provides a NIST SP 800-57 compliant Key Management Infrastructure | ||
(KMI). | ||
|
||
To get started do:: | ||
|
||
$ python boostrap.py # Must be Python 2.5 | ||
$ ./bin/buildout # Depends on successfull compilation of M2Crypto | ||
$ ./bin/paster serve server.ini | ||
|
||
The server will come up on port 8080. You can create a new key encrypting key | ||
using:: | ||
|
||
$ wget http://localhost:8080/new -O kek.dat | ||
|
||
The data encryption key can now be retrieved by posting the KEK to another | ||
URL:: | ||
|
||
$ wget http://localhost:8080/key --post-file kek.dat -O datakey.dat | ||
|
||
Note: To be compliant, the server must use an encrypted communication cahnnel | ||
of course. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
############################################################################## | ||
# | ||
# Copyright (c) 2008 Zope Foundation and Contributors. | ||
# All Rights Reserved. | ||
# | ||
# This software is subject to the provisions of the Zope Public License, | ||
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. | ||
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED | ||
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS | ||
# FOR A PARTICULAR PURPOSE. | ||
# | ||
############################################################################## | ||
""" | ||
$Id$ | ||
""" | ||
__docformat__ = "reStructuredText" | ||
from zope.error.error import RootErrorReportingUtility | ||
|
||
globalErrorReportingUtility = RootErrorReportingUtility() | ||
globalErrorReportingUtility.setProperties(20, True, ()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters