This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Benjamin Dauvergne 83439c8973 fix version in setup.py 2016-03-23 10:50:19 +01:00
data test: add fedict tsa test 2013-10-30 10:16:07 +01:00
debian use dateutil to parse timestamps 2016-03-23 10:45:12 +01:00
rfc3161 use dateutil to parse timestamps 2016-03-23 10:45:12 +01:00
spec add ASN1-88 schema 2012-10-03 18:33:50 +02:00
tests use tox and pytest for running tests 2016-03-11 14:55:45 +01:00
.gitignore add .gitignore 2012-10-03 18:09:17 +02:00
MANIFEST.in Release 1.0.7 2016-03-23 10:48:36 +01:00
README Release 1.0.7 2016-03-23 10:48:36 +01:00
setup.py fix version in setup.py 2016-03-23 10:50:19 +01:00
stdeb.cfg add stdeb.cfg file 2014-05-05 22:42:31 +02:00
tox.ini use tox and pytest for running tests 2016-03-11 14:55:45 +01:00

README

rfc3161
=======

A simple client library for cryptographic timestamping service implementing the
protocol from RFC3161.

    >>> import rfc3161
    >>> certificate = file('data/certum_certificate.crt').read()
    >>> rt = rfc3161.RemoteTimestamper('http://time.certum.pl', certificate=certificate)
    >>> rt.timestamp(data='John Doe')
    ('...', '')
    >>> rt.check(_, data='John Doe')
    (True, '')
    >>> rfc3161.get_timestamp(tst)
    datetime.datetime(2014, 4, 25, 9, 34, 16)

Authors
=======

Benjamin Dauvergne <bdauvergne@entrouvert.com>
Michael Gebetsroither <michael@mgeb.org>

Changelog
=========

1.0.7
-----

- use dateutil to parse genTime
- fix bad instantiation of UTF8String in PKIFreeText
- use tox and py.test