tsp-client: An IETF Time-Stamp Protocol (TSP) (RFC 3161) client
===============================================================
tsp-client is an implementation of the `RFC 3161 <https://www.rfc-editor.org/rfc/rfc3161.html>`_ TSP protocol in Python.
TSP is used for point-in-time attestation and non-repudiation as part of various electronic signature and code signing
schemes, including `eIDAS <https://en.wikipedia.org/wiki/EIDAS>`_ `XAdES <https://en.wikipedia.org/wiki/XAdES>`_
(tsp-client is used by `SignXML <https://github.com/XML-Security/signxml>`_ to implement XAdES).
Installation
------------
::
pip install tsp-client
Synopsis
--------
.. code-block:: python
from tsp_client import TSPSigner, TSPVerifier
# Sign a message online by transmitting its digest to the timestamp authority
message = b"abc"
signer = TSPSigner()
signed = signer.sign(message) # Returns raw bytes of the verified timestamp token.
# Verify a presented timestamp token offline using the original message
verified = TSPVerifier().verify(signed, message=message)
# Or sign and verify using the message digest (digest algorithm may vary)
import hashlib
digest = hashlib.sha512(message).digest()
signer.sign(message_digest=digest)
verified = TSPVerifier().verify(signed, message_digest=digest)
print(verified.tst_info) # Parsed TSTInfo (CMS SignedData) structure
print(verified.signed_attrs) # Parsed CMS SignedAttributes structure
Specifying a custom TSA
~~~~~~~~~~~~~~~~~~~~~~~
To provide a timestamped signature with non-repudiation verifiable via a chain of trust, TSP requires the use of a TSA
(time-stamp authority) server when generating timestamp tokens. TSA servers can be thought of as digital notaries.
Verification of tokens can be done offline using your system's certificate authority (CA) trust store.
By default, tsp-client uses the `DigiCert TSA server
<https://knowledge.digicert.com/generalinformation/INFO4231.html>`_ when signing tokens. To use a different TSA, set the
``SigningSettings.tsp_server`` attribute as follows:
.. code-block:: python
from tsp_client import TSPSigner, TSPVerifier, SigningSettings
signing_settings = SigningSettings(tsp_server="http://timestamp.identrust.com")
signer = TSPSigner()
signed = signer.sign(message, signing_settings=signing_settings)
There is currently no credible public TSA that offers HTTPS transport security and does not apply throttling. DigiCert
provides a relatively high throughput public TSA endpoint, but your message digests and tokens will be transmitted
unencrypted over the network. As an alternative, Sectigo offers an HTTPS TSA (``https://timestamp.sectigo.com``) but
applies throttling so is only suitable for low throughput applications.
The European Union maintains a list of trusted TSAs as part of the `eIDAS dashboard
<https://esignature.ec.europa.eu/efda/tl-browser/>`_, however this list only serves as a root of trust and does not link
directly to the TSA endpoints of listed providers.
Authors
-------
* Andrey Kislyuk
Links
-----
* `Project home page (GitHub) <https://github.com/pyauth/tsp-client>`_
* `Documentation <https://pyauth.github.io/tsp-client/>`_
* `Package distribution (PyPI) <https://pypi.python.org/pypi/tsp-client>`_
* `Change log <https://github.com/pyauth/tsp-client/blob/master/Changes.rst>`_
* `IETF RFC 3161: Time-Stamp Protocol (TSP) <https://www.rfc-editor.org/rfc/rfc3161.html>`_
Bugs
~~~~
Please report bugs, issues, feature requests, etc. on `GitHub <https://github.com/pyauth/tsp-client/issues>`_.
License
-------
Copyright 2022-2023, Andrey Kislyuk and tsp-client contributors. Licensed under the terms of the
`Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_. Distribution of the LICENSE and NOTICE
files with source copies of this package and derivative works is **REQUIRED** as specified by the Apache License.
Raw data
{
"_id": null,
"home_page": "https://github.com/pyauth/tsp-client",
"name": "tsp-client",
"maintainer": "",
"docs_url": null,
"requires_python": "",
"maintainer_email": "",
"keywords": "",
"author": "Andrey Kislyuk",
"author_email": "kislyuk@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/6f/13/5a1fb1cf8c3f578c3380b1ceab6fb4c0496382ed820e94c1845731fdb531/tsp-client-0.2.0.tar.gz",
"platform": "MacOS X",
"description": "tsp-client: An IETF Time-Stamp Protocol (TSP) (RFC 3161) client\n===============================================================\ntsp-client is an implementation of the `RFC 3161 <https://www.rfc-editor.org/rfc/rfc3161.html>`_ TSP protocol in Python.\n\nTSP is used for point-in-time attestation and non-repudiation as part of various electronic signature and code signing\nschemes, including `eIDAS <https://en.wikipedia.org/wiki/EIDAS>`_ `XAdES <https://en.wikipedia.org/wiki/XAdES>`_\n(tsp-client is used by `SignXML <https://github.com/XML-Security/signxml>`_ to implement XAdES).\n\nInstallation\n------------\n::\n\n pip install tsp-client\n\nSynopsis\n--------\n\n.. code-block:: python\n\n from tsp_client import TSPSigner, TSPVerifier\n\n # Sign a message online by transmitting its digest to the timestamp authority\n message = b\"abc\"\n signer = TSPSigner()\n signed = signer.sign(message) # Returns raw bytes of the verified timestamp token.\n\n # Verify a presented timestamp token offline using the original message\n verified = TSPVerifier().verify(signed, message=message)\n\n # Or sign and verify using the message digest (digest algorithm may vary)\n import hashlib\n\n digest = hashlib.sha512(message).digest()\n \n signer.sign(message_digest=digest)\n verified = TSPVerifier().verify(signed, message_digest=digest)\n\n print(verified.tst_info) # Parsed TSTInfo (CMS SignedData) structure\n print(verified.signed_attrs) # Parsed CMS SignedAttributes structure\n\nSpecifying a custom TSA\n~~~~~~~~~~~~~~~~~~~~~~~\nTo provide a timestamped signature with non-repudiation verifiable via a chain of trust, TSP requires the use of a TSA\n(time-stamp authority) server when generating timestamp tokens. TSA servers can be thought of as digital notaries.\nVerification of tokens can be done offline using your system's certificate authority (CA) trust store.\n\nBy default, tsp-client uses the `DigiCert TSA server\n<https://knowledge.digicert.com/generalinformation/INFO4231.html>`_ when signing tokens. To use a different TSA, set the\n``SigningSettings.tsp_server`` attribute as follows:\n\n.. code-block:: python\n\n from tsp_client import TSPSigner, TSPVerifier, SigningSettings\n signing_settings = SigningSettings(tsp_server=\"http://timestamp.identrust.com\")\n signer = TSPSigner()\n signed = signer.sign(message, signing_settings=signing_settings)\n\nThere is currently no credible public TSA that offers HTTPS transport security and does not apply throttling. DigiCert\nprovides a relatively high throughput public TSA endpoint, but your message digests and tokens will be transmitted\nunencrypted over the network. As an alternative, Sectigo offers an HTTPS TSA (``https://timestamp.sectigo.com``) but\napplies throttling so is only suitable for low throughput applications.\n\nThe European Union maintains a list of trusted TSAs as part of the `eIDAS dashboard\n<https://esignature.ec.europa.eu/efda/tl-browser/>`_, however this list only serves as a root of trust and does not link\ndirectly to the TSA endpoints of listed providers.\n\nAuthors\n-------\n* Andrey Kislyuk\n\nLinks\n-----\n* `Project home page (GitHub) <https://github.com/pyauth/tsp-client>`_\n* `Documentation <https://pyauth.github.io/tsp-client/>`_\n* `Package distribution (PyPI) <https://pypi.python.org/pypi/tsp-client>`_\n* `Change log <https://github.com/pyauth/tsp-client/blob/master/Changes.rst>`_\n* `IETF RFC 3161: Time-Stamp Protocol (TSP) <https://www.rfc-editor.org/rfc/rfc3161.html>`_\n\nBugs\n~~~~\nPlease report bugs, issues, feature requests, etc. on `GitHub <https://github.com/pyauth/tsp-client/issues>`_.\n\nLicense\n-------\nCopyright 2022-2023, Andrey Kislyuk and tsp-client contributors. Licensed under the terms of the\n`Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>`_. Distribution of the LICENSE and NOTICE\nfiles with source copies of this package and derivative works is **REQUIRED** as specified by the Apache License.\n",
"bugtrack_url": null,
"license": "Apache Software License",
"summary": "An IETF Time-Stamp Protocol (TSP) (RFC 3161) client",
"version": "0.2.0",
"project_urls": {
"Change log": "https://github.com/pyauth/tsp-client/blob/main/Changes.rst",
"Documentation": "https://pyauth.github.io/tsp-client/",
"Homepage": "https://github.com/pyauth/tsp-client",
"Issue tracker": "https://github.com/pyauth/tsp-client/issues"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "96dfa18501f261b254389c0afdf690c587cb0299f8c4526d805c9bf5fa5265d5",
"md5": "7ab55af2a3306841993fee968aeb80d7",
"sha256": "0b790d10a68d66782c13f1d7cc7f5206df26b49826c1da80944b7c05b1731784"
},
"downloads": -1,
"filename": "tsp_client-0.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "7ab55af2a3306841993fee968aeb80d7",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 13294,
"upload_time": "2024-03-18T16:45:36",
"upload_time_iso_8601": "2024-03-18T16:45:36.944964Z",
"url": "https://files.pythonhosted.org/packages/96/df/a18501f261b254389c0afdf690c587cb0299f8c4526d805c9bf5fa5265d5/tsp_client-0.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6f135a1fb1cf8c3f578c3380b1ceab6fb4c0496382ed820e94c1845731fdb531",
"md5": "b25914aa0ac369ec16027b29a561c837",
"sha256": "6e66148dd116322eb44a7484e5ad33bbe640b997343c443de9cc70fc5eb19987"
},
"downloads": -1,
"filename": "tsp-client-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "b25914aa0ac369ec16027b29a561c837",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 17191,
"upload_time": "2024-03-18T16:45:38",
"upload_time_iso_8601": "2024-03-18T16:45:38.405059Z",
"url": "https://files.pythonhosted.org/packages/6f/13/5a1fb1cf8c3f578c3380b1ceab6fb4c0496382ed820e94c1845731fdb531/tsp-client-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-03-18 16:45:38",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "pyauth",
"github_project": "tsp-client",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "tsp-client"
}