mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-01 04:38:56 +02:00
Adds support for PKCS#11 v2.20 and/or KMIP 1.2 compatible HSMs. Includes backward compatible extensions to the krill.conf syntax. Includes HSM related developer docs. Excludes HSM specific API (REST, krillc, Prometheus) or UI extensions.
11 lines
181 B
Python
Executable File
11 lines
181 B
Python
Executable File
#!/usr/bin/python3
|
|
from kmip.services.server import KmipServer
|
|
|
|
server = KmipServer(
|
|
config_path='./server.conf',
|
|
log_path='./server.log'
|
|
)
|
|
|
|
with server:
|
|
server.serve()
|