From ee752d41b6dcb9632d8837b4fd4c480f693286d4 Mon Sep 17 00:00:00 2001 From: kakwa Date: Tue, 20 Jun 2017 18:31:00 +0200 Subject: [PATCH] adding configuration parameters for pkcs11 engine configuration --- conf/uts-server.cnf | 15 +++++++++++++++ docs/conf.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/conf/uts-server.cnf b/conf/uts-server.cnf index 6dff509..780c5ef 100644 --- a/conf/uts-server.cnf +++ b/conf/uts-server.cnf @@ -103,6 +103,21 @@ tcp_nodelay = 0 # Loglevel (debug, info, notice, warn, err, emerg, crit) log_level = info +# PKCS 11 configuration parameters (Optional, only useful with PKCS 11 device) +#[ pkcs11 ] + +# PKCS 11 .so PKCS 11 OpenSSL engine path +#engine = /path/engine/pkcs11.so + +# PKCS 11 .so module path +#module = /path/to/pkcs11module.so + +# PKCS 11 key uri +#key_uri = pkcs11:token=libp11-test;id=%01%02%03%04;object=server-key;type=private;pin-value=1234 + +# PKCS 11 cert uri +#cert_uri = pkcs11:token=libp11-test;id=%01%02%03%04;object=server-key;type=public;pin-value=1234 + # TSA configuration parameters. [ tsa ] diff --git a/docs/conf.py b/docs/conf.py index c82a762..edf1ac6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -203,7 +203,7 @@ Full Configuration File with open(tsq_path) as f: for line in f.readlines(): - m = re.search('\[ (\w+) \]', line) + m = re.search('#?\[ (\w+) \]', line) if m: section = m.group(1) docs[section] = {'text': text_buf, 'vars': {}}