[Python-modules-commits] [python-pskc] branch master updated (fb26c48 -> c26884c)

Arthur de Jong adejong at moszumanska.debian.org
Sat Jan 21 21:31:47 UTC 2017


This is an automated email from the git hooks/post-receive script.

adejong pushed a change to branch master
in repository python-pskc.

      from  fb26c48   Release 0.4-1
       new  3a94d05   Import python-pskc_0.5.orig.tar.gz
       new  0f12874   New upstream release (0.5)
       new  6e6cb55   Add file missing from upstream tarball
       new  1d131ba   Add file missing from upstream tarball
       new  c735505   Upgrade to standards-version 3.9.8 (no changes needed)
       new  c26884c   Release 0.5-1

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ChangeLog                                          | 360 ++++++++++++++++++---
 NEWS                                               |  22 ++
 PKG-INFO                                           |  13 +-
 README                                             |  13 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |  18 ++
 debian/control                                     |   2 +-
 ...01-Add-file-missing-from-upstream-tarball.patch |  50 +++
 debian/patches/series                              |   1 +
 docs/conf.py                                       |   2 +-
 docs/encryption.rst                                |   4 +-
 docs/usage.rst                                     | 164 ++++++----
 pskc/__init__.py                                   |  88 +++--
 pskc/algorithms.py                                 |  72 +++++
 pskc/crypto/__init__.py                            |  38 +++
 pskc/device.py                                     |  69 ++++
 pskc/encryption.py                                 | 329 +++++++------------
 pskc/key.py                                        | 329 +++++--------------
 pskc/mac.py                                        |  73 +----
 pskc/parser.py                                     | 291 +++++++++++++++++
 pskc/policy.py                                     |  72 +----
 pskc/serialiser.py                                 | 222 +++++++++++++
 pskc/xml.py                                        |  30 +-
 pskc2csv.py                                        |   4 +-
 python_pskc.egg-info/PKG-INFO                      |  13 +-
 python_pskc.egg-info/SOURCES.txt                   |  31 +-
 setup.cfg                                          |   4 +-
 setup.py                                           |   4 +-
 tests/actividentity/test.pskc                      |  34 ++
 .../actividentity-3des.pskcxml                     |  72 ++---
 .../ocra.pskcxml                                   |  53 ++-
 .../securid-aes-counter.pskcxml                    |  57 ++--
 .../totp.pskcxml                                   |  64 ++--
 .../figure2.pskcxml}                               |  25 +-
 .../figure3.pskcxml}                               |  46 ++-
 tests/draft-ietf-keyprov-pskc-02/figure4.pskcxml   |  51 +++
 tests/draft-ietf-keyprov-pskc-02/figure5.pskcxml   |  71 ++++
 tests/draft-ietf-keyprov-pskc-02/figure6.pskcxml   |  63 ++++
 tests/draft-ietf-keyprov-pskc-02/figure7.pskcxml   |  34 ++
 tests/draft-ietf-keyprov-pskc-02/figure8.pskcxml   |  68 ++++
 .../figure9.pskcxml}                               |  55 ++--
 ...{aes128-cbc.pskcxml => aes128-cbc-noiv.pskcxml} |   8 +-
 ...s128-cbc.pskcxml => mac-over-plaintext.pskcxml} |   5 +-
 .../{aes128-cbc.pskcxml => no-mac-key.pskcxml}     |  16 +-
 tests/invalid/incomplete-derivation.pskcxml        |  46 +++
 tests/invalid/mac-value.pskcxml                    |   6 +-
 ...d.pskcxml => missing-encryption-method.pskcxml} |  12 +-
 tests/invalid/missing-encryption.pskcxml           |   2 +-
 tests/invalid/no-mac-method.pskcxml                |   2 +-
 tests/misc/SampleFullyQualifiedNS.xml              |   1 -
 tests/misc/policy.pskcxml                          |   6 +-
 tests/rfc6030/figure8.pskcxml                      |  60 ++++
 tests/rfc6030/figure9.pskcxml                      |  65 ++++
 tests/test_actividentity.doctest                   |  62 ++++
 tests/test_aeskw.doctest                           |  42 ++-
 tests/test_crypto.doctest                          |  76 +++++
 tests/test_draft_ietf_keyprov_pskc_02.doctest      | 305 +++++++++++++++++
 tests/test_encryption.doctest                      |  60 +++-
 .../{test_vendors.doctest => test_feitian.doctest} |  28 +-
 tests/test_invalid.doctest                         |  39 ++-
 tests/test_misc.doctest                            |  41 ++-
 tests/test_nagraid.doctest                         |  54 ++++
 tests/test_rfc6030.doctest                         |  84 ++++-
 tests/test_write.doctest                           | 142 +++++++-
 tests/test_yubico.doctest                          | 149 +++++++++
 tests/yubico/example1.pskcxml                      |  38 +++
 tests/yubico/example2.pskcxml                      |  61 ++++
 tests/yubico/example3.pskcxml                      |  47 +++
 68 files changed, 3413 insertions(+), 1069 deletions(-)
 create mode 100644 debian/patches/0001-Add-file-missing-from-upstream-tarball.patch
 create mode 100644 debian/patches/series
 create mode 100644 pskc/algorithms.py
 create mode 100644 pskc/device.py
 create mode 100644 pskc/parser.py
 create mode 100644 pskc/serialiser.py
 create mode 100644 tests/actividentity/test.pskc
 copy tests/{rfc6030/figure3.pskcxml => draft-ietf-keyprov-pskc-02/figure2.pskcxml} (51%)
 copy tests/{rfc6030/figure5.pskcxml => draft-ietf-keyprov-pskc-02/figure3.pskcxml} (50%)
 create mode 100644 tests/draft-ietf-keyprov-pskc-02/figure4.pskcxml
 create mode 100644 tests/draft-ietf-keyprov-pskc-02/figure5.pskcxml
 create mode 100644 tests/draft-ietf-keyprov-pskc-02/figure6.pskcxml
 create mode 100644 tests/draft-ietf-keyprov-pskc-02/figure7.pskcxml
 create mode 100644 tests/draft-ietf-keyprov-pskc-02/figure8.pskcxml
 copy tests/{rfc6030/figure10.pskcxml => draft-ietf-keyprov-pskc-02/figure9.pskcxml} (75%)
 copy tests/encryption/{aes128-cbc.pskcxml => aes128-cbc-noiv.pskcxml} (73%)
 copy tests/encryption/{aes128-cbc.pskcxml => mac-over-plaintext.pskcxml} (86%)
 copy tests/encryption/{aes128-cbc.pskcxml => no-mac-key.pskcxml} (63%)
 create mode 100644 tests/invalid/incomplete-derivation.pskcxml
 copy tests/invalid/{no-mac-method.pskcxml => missing-encryption-method.pskcxml} (67%)
 create mode 100644 tests/rfc6030/figure8.pskcxml
 create mode 100644 tests/rfc6030/figure9.pskcxml
 create mode 100644 tests/test_actividentity.doctest
 create mode 100644 tests/test_crypto.doctest
 create mode 100644 tests/test_draft_ietf_keyprov_pskc_02.doctest
 rename tests/{test_vendors.doctest => test_feitian.doctest} (75%)
 create mode 100644 tests/test_nagraid.doctest
 create mode 100644 tests/test_yubico.doctest
 create mode 100644 tests/yubico/example1.pskcxml
 create mode 100644 tests/yubico/example2.pskcxml
 create mode 100644 tests/yubico/example3.pskcxml

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pskc.git



More information about the Python-modules-commits mailing list