2
0
mirror of https://github.com/openkmip/pykmip synced 2026-01-04 01:23:25 +00:00

Adding the CryptographyEngine

This changes adds the CryptographyEngine, which uses pyca/cryptography
to create symmetric and asymmetric keys. A test suite is included.
This commit is contained in:
Peter
2016-01-21 15:17:59 -05:00
parent 9d02201178
commit 53d6b1776e
7 changed files with 428 additions and 0 deletions

View File

@@ -12,3 +12,11 @@
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
from kmip.services.server.crypto.api import CryptographicEngine
from kmip.services.server.crypto.engine import CryptographyEngine
__all__ = [
'CryptographicEngine',
'CryptographyEngine',
]