Added crypto plugin encryption to Secrets post.

This commit is contained in:
Douglas Mendizabal
2013-05-10 03:08:06 -05:00
parent 2bb497224f
commit db40a53c00
13 changed files with 280 additions and 45 deletions

View File

@@ -72,5 +72,12 @@ setup(
'Environment :: No Input/Output (Daemon)',
],
scripts=['bin/barbican-api'],
py_modules=[]
py_modules=[],
entry_points="""
[barbican.crypto.extension]
simple_crypto = barbican.crypto.plugin:SimpleCryptoPlugin
[barbican.test.crypto.extension]
test_crypto = barbican.tests.crypto.test_plugin:TestCryptoPlugin
"""
)