Metadata-Version: 2.3
Name: rfc3161-client
Version: 0.1.0
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Typing :: Typed
Requires-Dist: maturin >=1.7, <2.0
Requires-Dist: cryptography >=43, <44
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: pretend ; extra == 'test'
Requires-Dist: coverage[toml] ; extra == 'test'
Requires-Dist: ruff ~=0.7.0 ; extra == 'lint'
Requires-Dist: rfc3161-client[test,lint,doc] ; extra == 'dev'
Provides-Extra: doc
Provides-Extra: test
Provides-Extra: lint
Provides-Extra: dev
License-File: LICENSE
Author: Trail of Bits <opensource@trailofbits.com>
Author-email: Trail of Bits <opensource@trailofbits.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://pypi.org/project/rfc3161-client
Project-URL: Documentation, https://trailofbits.github.io/rfc3161-client/
Project-URL: Issues, https://github.com/trailofbits/rfc3161-client/issues
Project-URL: Source, https://github.com/trailofbits/rfc3161-client

# `rfc3161-client`

> [!WARNING]  
> This project is an alpha version and should not be used in production.


`rfc3161-client` is a Python library implementing the Time-Stamp Protocol (TSP)
described in [RFC 3161](https://www.ietf.org/rfc/rfc3161.txt).

It is composed of three subprojects:

- [:crab: tsp-asn1](./rust/tsp-asn1/Cargo.toml): A Rust crate using [`rust-asn1`](https://docs.rs/asn1/latest/asn1/index.html)
  to create the types used by the Time-Stamp protocol. This crate depends on 
  rust-asn1 and cryptography to minimize the amount of duplicated code. While 
  it is usable as a standalone crate, this is not officially supported. Drop 
  us a message if you are interested in using it.
- [:crab: rfc3161-client](./rust/Cargo.toml): Another Rust crate that 
  provides 
  Python bindings to the `tsp-asn1` crate using PyO3. 
- [:snake: rfc3161-client](./pyproject.toml) A Python library using the 
  crate above to provide an usable API to create Timestamp Request and read 
  Timestamp Response. 

# Goals and anti-goals

- This library should be correct and provide an accurate implementation of 
protocol described in the RFC 3161.
- This library does not perform any network activity, it simply provides 
  primitive to build and verify objects. Network activity must be handled 
  separately.

# License

Apache 2.0

# Authors
Trail of Bits
