A tiny ACME Python 2 & 3 client library with minimal dependencies. ACME is a protocol for domain certificate verification and signing initiated by Let's Encrypt. This package is meant to be used as a library and also comes with command line scripts.
You can choose to either install it in your user's home directory or in the system directories.
This package depends on having the OpenSSL executable in the PATH.
To install it from PyPI using pip call:
pip install certsign
You can also install it from a code checkout using:
pip install .
With pip you can use the --user
option to install it to your user's home directory:
pip install --user certsign
If you install to the user directory on Linux $HOME/.local/bin
should be in your
$PATH
-variable. On Linux you can add the following to .profile
or .bashrc
in your home directory, if $HOME/.local/bin
is not already in you PATH.
# set PATH so it includes user's private .local/bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
The location for the scripts and the method to add it to the PATH is different for MacOS/OSX and Windows.
This is the primary usage of this library:
from certsign import client
account_key = 'acme_directory_account.key'
csr_file = 'your_domain.csr'
challenges_path = '/path/served/by/your/http/server'
account_email = 'you@example.com'
signed_cert = client.sign_csr(
account_key, csr_file, challenges_path, account_email=account_email
)
from certsign import crypto
privkey_path = '/tmp/privkey.pem'
csr_path = '/tmp/example.com.csr'
privkey = crypto.create_private_key(bits=2048)
with open(privkey_path, 'bw') as f:
f.write(privkey)
csr = crypto.create_csr(
privkey_path,
['example.com', 'www.example.com'],
openssl_conf='/etc/ssl/openssl.cnf'
)
with open(csr_path, 'bw') as f:
f.write(csr)
For signing a Certificate Signing Request (CSR):
certsign --account-key /path/to/account/key --csr /path/to/domain.csr \ --challenge-dir /path/served/by/your/http/server \ --account-email you@example.com
Create a private key:
certsign-tool privkey --bits=4096 --out=/path/to/privkey.pem
Create a CSR:
certsign-tool csr --privkey=/path/to/privkey.pem \ --out=/path/to/example.com.csr example.com www.example.com
View the CSR you just created:
certsign-tool view /path/to/example.com.csr
A simple server to respond to ACME challenges:
certsign-server --challenge-dir /path/served/by/your/http/server \ --addr localhost \ --port 8000 \ --pidfile /tmp/certsign.pid &
To kill the server when finished:
if [ -f /tmp/certsign.pid ]; then
pkill -F /tmp/certsign.pid
fi
It is recommended that you create a Python 3 virtual environment using pyvenv, and a Python 2 virtual environment using virtualenv.
Go to the root of this project (where setup.py is located) and run the following commands:
- For Python 3:
pyvenv venv-certsign-py3
andsource venv-certsign-py3/bin/activate
to activate. - For Python 2:
virtualenv venv-certsign-py2
andsource venv-certsign-py2/bin/activate
to activate.
Set up a development environment using the following command (with literal square brackets):
pip install -e .[dev]
To run the test in your current environment:
python setup.py test
To run the tests for several Python versions:
tox
The release proccess is based on the official documentation for distributing packages.
Create a ~/.pypirc file to upload to The Python Package Index (PyPI):
[distutils] index-servers = pypi [pypi] username: somepypiuser password: somepassword
Create a bindary and a source release and use twine to upload the packages. Also sign the packages using a gpg key:
python setup.py sdist bdist_wheel twine upload -r pypi dist/*