lists.arthurdejong.org
RSS feed

python-pskc branch master updated. 0.5-2-g1fc1a03

[Date Prev][Date Next] [Thread Prev][Thread Next]

python-pskc branch master updated. 0.5-2-g1fc1a03



This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-pskc".

The branch, master has been updated
       via  1fc1a035bb2e04c25bd20c88df485c9beaf331aa (commit)
       via  8de25c2dfee50d8aa203b58c1c1b83e0e32fe4ab (commit)
      from  5889df7dfc7531987177493182eb4f85515dbc9e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://arthurdejong.org/git/python-pskc/commit/?id=1fc1a035bb2e04c25bd20c88df485c9beaf331aa

commit 1fc1a035bb2e04c25bd20c88df485c9beaf331aa
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Wed Jan 25 23:10:33 2017 +0100

    Switch URLs to HTTPS

diff --git a/README b/README
index 3b70159..5f6b4d5 100644
--- a/README
+++ b/README
@@ -10,7 +10,7 @@ other authentication devices.
 This module can be used to extract keys from PSKC files for use in an OTP
 authentication system. The module can also be used for authoring PSKC files.
 
-http://arthurdejong.org/python-pskc/
+https://arthurdejong.org/python-pskc/
 
 
 API
diff --git a/docs/usage.rst b/docs/usage.rst
index 47ea04b..e53d0b8 100644
--- a/docs/usage.rst
+++ b/docs/usage.rst
@@ -158,7 +158,7 @@ The Key class
       
+------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------+
       | ``urn:ietf:params:xml:ns:keyprov:pskc:hotp``   | `OATH event-based OTP 
<https://tools.ietf.org/html/rfc6030#section-10.1>`_                            
                      |
       
+------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------+
-      | ``urn:ietf:params:xml:ns:keyprov:pskc#totp``   | `OATH time-based OTP 
<http://tools.ietf.org/html/draft-hoyer-keyprov-pskc-algorithm-profiles-01#section-4>`_
                |
+      | ``urn:ietf:params:xml:ns:keyprov:pskc#totp``   | `OATH time-based OTP 
<https://tools.ietf.org/html/draft-hoyer-keyprov-pskc-algorithm-profiles-01#section-4>`_
               |
       | ``urn:ietf:params:xml:ns:keyprov:pskc:totp``   |                       
                                                                                
                      |
       
+------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------+
       | ``urn:ietf:params:xml:ns:keyprov:pskc#OCRA-1`` | `OATH 
challenge-response algorithm 
<https://tools.ietf.org/html/draft-hoyer-keyprov-pskc-algorithm-profiles-01#section-3>`_
 |
@@ -251,7 +251,7 @@ The Key class
    .. attribute:: challenge_check
 
       Boolean that indicates whether the device will check an embedded
-      `Luhn check digit 
<http://arthurdejong.org/python-stdnum/doc/stdnum.luhn.html>`_
+      `Luhn check digit 
<https://arthurdejong.org/python-stdnum/doc/stdnum.luhn.html>`_
       contained in the challenge.
 
    .. attribute:: response_encoding
@@ -266,7 +266,7 @@ The Key class
    .. attribute:: response_check
 
       Boolean that indicates whether the device will append a
-      `Luhn check digit 
<http://arthurdejong.org/python-stdnum/doc/stdnum.luhn.html>`_
+      `Luhn check digit 
<https://arthurdejong.org/python-stdnum/doc/stdnum.luhn.html>`_
       to the response.
 
    .. attribute:: policy
@@ -315,7 +315,7 @@ The Device class
       provisioned.
       `RFC 6030 <https://tools.ietf.org/html/rfc6030#section-4.3.1>`__
       prescribes that the value is of the form ``oath.prefix`` for `OATH
-      Manufacturer Prefixes 
<http://www.openauthentication.org/oath-id/prefixes/>`_
+      Manufacturer Prefixes 
<https://openauthentication.org/oath-manufacturers/>`_
       or ``iana.organisation`` for `IANA Private Enterprise Numbers
       
<https://www.iana.org/assignments/enterprise-numbers/enterprise-numbers>`_
       however, it is generally just a string.
diff --git a/setup.py b/setup.py
index 8393682..97576c4 100755
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,7 @@ setup(
     author='Arthur de Jong',
     author_email='arthur@arthurdejong.org',
     keywords=['PSKC', 'RFC 6030', 'key container'],
-    url='http://arthurdejong.org/python-pskc/',
+    url='https://arthurdejong.org/python-pskc/',
     license='LGPL',
     classifiers=[
         'Development Status :: 4 - Beta',

http://arthurdejong.org/git/python-pskc/commit/?id=8de25c2dfee50d8aa203b58c1c1b83e0e32fe4ab

commit 8de25c2dfee50d8aa203b58c1c1b83e0e32fe4ab
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Sat Jan 21 19:53:24 2017 +0100

    Correct name of ActivIdentity test file

diff --git a/tests/actividentity/test.pskc b/tests/actividentity/test.pskcxml
similarity index 100%
rename from tests/actividentity/test.pskc
rename to tests/actividentity/test.pskcxml
diff --git a/tests/test_actividentity.doctest b/tests/test_actividentity.doctest
index 734b028..adb584a 100644
--- a/tests/test_actividentity.doctest
+++ b/tests/test_actividentity.doctest
@@ -31,7 +31,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 This tests an ActivIdentity PSKC file that was found in the wild. It does not
 follow the RFC 6030 spec but is handled nonetheless.
 
->>> pskc = PSKC('tests/actividentity/test.pskc')
+>>> pskc = PSKC('tests/actividentity/test.pskcxml')
 >>> pskc.encryption.algorithm
 'http://www.w3.org/2001/04/xmlenc#aes128-cbc'
 >>> b2a_hex(pskc.encryption.iv)

-----------------------------------------------------------------------

Summary of changes:
 README                                          | 2 +-
 docs/usage.rst                                  | 8 ++++----
 setup.py                                        | 2 +-
 tests/actividentity/{test.pskc => test.pskcxml} | 0
 tests/test_actividentity.doctest                | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)
 rename tests/actividentity/{test.pskc => test.pskcxml} (100%)


hooks/post-receive
-- 
python-pskc
-- 
To unsubscribe send an email to
python-pskc-commits-unsubscribe@lists.arthurdejong.org or see
https://lists.arthurdejong.org/python-pskc-commits/