File: PKG-INFO

package info (click to toggle)
python-rfc3161ng 2.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 200 kB
  • sloc: python: 597; makefile: 3
file content (41 lines) | stat: -rw-r--r-- 1,280 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Metadata-Version: 1.0
Name: rfc3161
Version: 1.0.7
Summary: Python implementation of the RFC3161 specification, using pyasn1
Home-page: https://dev.entrouvert.org/projects/python-rfc3161
Author: Benjamin Dauvergne
Author-email: bdauvergne@entrouvert.com
License: MIT
Description: 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
        
Platform: UNKNOWN