[Python-modules-commits] [python-pskc] branch upstream updated (3a94d05 -> 5227f23)

Arthur de Jong adejong at moszumanska.debian.org
Sun Dec 31 15:10:47 UTC 2017


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

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

      from  3a94d05   Import python-pskc_0.5.orig.tar.gz
       new  5227f23   Import python-pskc_1.0.orig.tar.gz

The 1 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                                          |  359 ++++++
 MANIFEST.in                                        |    4 +-
 NEWS                                               |   25 +
 PKG-INFO                                           |   66 +-
 README                                             |   23 +-
 docs/conf.py                                       |   14 +-
 docs/encryption.rst                                |   46 +-
 docs/exceptions.rst                                |    3 +
 docs/index.rst                                     |    1 +
 docs/mac.rst                                       |   42 +-
 docs/policy.rst                                    |    2 +-
 docs/pskc2csv.rst                                  |   65 ++
 docs/signatures.rst                                |  114 ++
 docs/usage.rst                                     |   19 +-
 pskc/__init__.py                                   |    5 +-
 pskc/algorithms.py                                 |   77 +-
 pskc/crypto/__init__.py                            |   19 +-
 pskc/crypto/aeskw.py                               |   44 +-
 pskc/crypto/tripledeskw.py                         |   51 +-
 pskc/encryption.py                                 |  189 ++-
 pskc/exceptions.py                                 |   11 +-
 pskc/key.py                                        |  174 +--
 pskc/mac.py                                        |   62 +-
 pskc/parser.py                                     |  180 ++-
 pskc/policy.py                                     |   27 +-
 pskc/serialiser.py                                 |  109 +-
 pskc/signature.py                                  |  137 +++
 pskc/xml.py                                        |   89 +-
 pskc2csv.py                                        |   63 +-
 python_pskc.egg-info/PKG-INFO                      |   66 +-
 python_pskc.egg-info/SOURCES.txt                   |   39 +-
 python_pskc.egg-info/requires.txt                  |   11 +-
 setup.cfg                                          |    8 +-
 setup.py                                           |   19 +-
 tests/actividentity/test.pskcxml                   |   34 +
 tests/certificate/README                           |   29 +
 tests/certificate/ca-certificate.pem               |   20 +
 tests/certificate/ca-key.pem                       |   28 +
 tests/certificate/certificate.pem                  |   18 +
 tests/certificate/key.pem                          |   28 +
 tests/certificate/request.pem                      |   16 +
 tests/certificate/ss-certificate.pem               |   20 +
 .../non-encrypted.pskcxml                          |   41 +
 .../password-encrypted.pskcxml                     |   45 +
 .../non-encrypted.pskcxml                          |   42 +
 .../password-encrypted.pskcxml                     |   45 +
 ...r-plaintext.pskcxml => camellia128-cbc.pskcxml} |   13 +-
 ...r-plaintext.pskcxml => camellia192-cbc.pskcxml} |   13 +-
 ...r-plaintext.pskcxml => camellia256-cbc.pskcxml} |   13 +-
 .../{kw-aes128.pskcxml => kw-camellia128.pskcxml}  |   10 +-
 .../{kw-aes128.pskcxml => kw-camellia192.pskcxml}  |   10 +-
 .../{kw-aes128.pskcxml => kw-camellia256.pskcxml}  |   10 +-
 tests/misc/partialxml.pskcxml                      |   23 +
 tests/multiotp/pskc-hotp-aes.txt                   |   85 ++
 tests/multiotp/pskc-hotp-pbe.txt                   |   65 ++
 tests/multiotp/pskc-totp-aes.txt                   |  145 +++
 tests/multiotp/pskc-totp-pbe.txt                   |   62 +
 tests/multiotp/tokens_hotp_aes.pskc                |   80 ++
 tests/multiotp/tokens_hotp_pbe.pskc                |   62 +
 tests/multiotp/tokens_ocra_aes.pskc                | 1216 ++++++++++++++++++++
 tests/multiotp/tokens_ocra_pbe.pskc                |   53 +
 tests/multiotp/tokens_totp_aes.pskc                |   98 ++
 tests/multiotp/tokens_totp_pbe.pskc                |   71 ++
 tests/rfc6030/figure9.pskcxml                      |    9 +-
 tests/test_actividentity.doctest                   |    2 +-
 tests/test_aeskw.doctest                           |    8 +-
 tests/test_crypto.doctest                          |   76 --
 ...eyprov_portable_symmetric_key_container.doctest |  180 +++
 tests/test_draft_ietf_keyprov_pskc_02.doctest      |   17 +-
 tests/test_encryption.doctest                      |   70 +-
 tests/test_invalid.doctest                         |   12 +-
 tests/test_mac.doctest                             |  129 +++
 tests/test_misc.doctest                            |   29 +-
 tests/test_multiotp.doctest                        |   75 ++
 tests/test_pskc2csv.doctest                        |  185 +++
 tests/test_rfc6030.doctest                         |   27 +-
 tests/test_signature.doctest                       |  219 ++++
 tests/test_write.doctest                           |   50 +-
 tests/test_yubico.doctest                          |    8 +-
 tox.ini                                            |   39 +
 80 files changed, 5054 insertions(+), 639 deletions(-)
 create mode 100644 docs/pskc2csv.rst
 create mode 100644 docs/signatures.rst
 create mode 100644 pskc/signature.py
 create mode 100644 tests/actividentity/test.pskcxml
 create mode 100644 tests/certificate/README
 create mode 100644 tests/certificate/ca-certificate.pem
 create mode 100644 tests/certificate/ca-key.pem
 create mode 100644 tests/certificate/certificate.pem
 create mode 100644 tests/certificate/key.pem
 create mode 100644 tests/certificate/request.pem
 create mode 100644 tests/certificate/ss-certificate.pem
 create mode 100644 tests/draft-hoyer-keyprov-portable-symmetric-key-container-00/non-encrypted.pskcxml
 create mode 100644 tests/draft-hoyer-keyprov-portable-symmetric-key-container-00/password-encrypted.pskcxml
 create mode 100644 tests/draft-hoyer-keyprov-portable-symmetric-key-container-01/non-encrypted.pskcxml
 create mode 100644 tests/draft-hoyer-keyprov-portable-symmetric-key-container-01/password-encrypted.pskcxml
 copy tests/encryption/{mac-over-plaintext.pskcxml => camellia128-cbc.pskcxml} (66%)
 copy tests/encryption/{mac-over-plaintext.pskcxml => camellia192-cbc.pskcxml} (66%)
 copy tests/encryption/{mac-over-plaintext.pskcxml => camellia256-cbc.pskcxml} (66%)
 copy tests/encryption/{kw-aes128.pskcxml => kw-camellia128.pskcxml} (66%)
 copy tests/encryption/{kw-aes128.pskcxml => kw-camellia192.pskcxml} (64%)
 copy tests/encryption/{kw-aes128.pskcxml => kw-camellia256.pskcxml} (63%)
 create mode 100644 tests/misc/partialxml.pskcxml
 create mode 100644 tests/multiotp/pskc-hotp-aes.txt
 create mode 100644 tests/multiotp/pskc-hotp-pbe.txt
 create mode 100644 tests/multiotp/pskc-totp-aes.txt
 create mode 100644 tests/multiotp/pskc-totp-pbe.txt
 create mode 100644 tests/multiotp/tokens_hotp_aes.pskc
 create mode 100644 tests/multiotp/tokens_hotp_pbe.pskc
 create mode 100644 tests/multiotp/tokens_ocra_aes.pskc
 create mode 100644 tests/multiotp/tokens_ocra_pbe.pskc
 create mode 100644 tests/multiotp/tokens_totp_aes.pskc
 create mode 100644 tests/multiotp/tokens_totp_pbe.pskc
 delete mode 100644 tests/test_crypto.doctest
 create mode 100644 tests/test_draft_hoyer_keyprov_portable_symmetric_key_container.doctest
 create mode 100644 tests/test_mac.doctest
 create mode 100644 tests/test_multiotp.doctest
 create mode 100644 tests/test_pskc2csv.doctest
 create mode 100644 tests/test_signature.doctest
 create mode 100644 tox.ini

-- 
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