pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/security/py-asyncssh



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Jan 22 09:17:57 UTC 2019

Modified Files:
        pkgsrc/security/py-asyncssh: Makefile distinfo

Log Message:
py-asyncssh: updated to 1.15.1

Release 1.15.1:
Added callback-based host validation in SSHClient, allowing callers to decide programmatically whether to trust server host keys and certificates rather than having to provide a list of trusted 
values in advance.
Changed SSH client code to only load the default known hosts file if if exists. Previously an error was returned if a known_hosts value wasn’t specified and the default known_hosts file didn’t exist. 
For host validate to work in this case, verification callbacks must be implemented or other forms of validation such as X.509 trusted CAs or GSS-based key exchange must be used.
Fixed known hosts validation to completely disable certificate checks when known_hosts is set to None. Previously, key checking was disabled in this case but other checks for certificate expiration 
and hostname mismatch were still performed, causing connections to fail even when checking was supposed to be disabled.
Switched curve25519 key exchange to use the PyCA implementation, avoiding a dependency on libnacl/libsodium. For now, support for Ed25519 keys still requires these libraries, but once that support 
appears in PyCA, it may be possible to remove this dependency entirely.
Added get_fingerprint() method to return a fingerprint of an SSHKey.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 pkgsrc/security/py-asyncssh/Makefile \
    pkgsrc/security/py-asyncssh/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/security/py-asyncssh/Makefile
diff -u pkgsrc/security/py-asyncssh/Makefile:1.11 pkgsrc/security/py-asyncssh/Makefile:1.12
--- pkgsrc/security/py-asyncssh/Makefile:1.11   Tue Nov 27 07:03:38 2018
+++ pkgsrc/security/py-asyncssh/Makefile        Tue Jan 22 09:17:57 2019
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2018/11/27 07:03:38 adam Exp $
+# $NetBSD: Makefile,v 1.12 2019/01/22 09:17:57 adam Exp $
 
-DISTNAME=      asyncssh-1.15.0
+DISTNAME=      asyncssh-1.15.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    security python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=a/asyncssh/}
Index: pkgsrc/security/py-asyncssh/distinfo
diff -u pkgsrc/security/py-asyncssh/distinfo:1.11 pkgsrc/security/py-asyncssh/distinfo:1.12
--- pkgsrc/security/py-asyncssh/distinfo:1.11   Tue Nov 27 07:03:38 2018
+++ pkgsrc/security/py-asyncssh/distinfo        Tue Jan 22 09:17:57 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.11 2018/11/27 07:03:38 adam Exp $
+$NetBSD: distinfo,v 1.12 2019/01/22 09:17:57 adam Exp $
 
-SHA1 (asyncssh-1.15.0.tar.gz) = 973a19ab2d5f575aabaf1f7d0ef966d489d9e2e4
-RMD160 (asyncssh-1.15.0.tar.gz) = 602785754721cae1ba8437cf49f8c38bf6fb6723
-SHA512 (asyncssh-1.15.0.tar.gz) = 8a3eea2abef11487361848eaf838aaccafb881cca3c18d5fd6a995597678a92fa4a62c5d53aaa90208c7600d492346e875469007b1255903270b5524cdc66042
-Size (asyncssh-1.15.0.tar.gz) = 308839 bytes
+SHA1 (asyncssh-1.15.1.tar.gz) = eabab9d617ff34f64a23ca7a9d41e1d54680f18e
+RMD160 (asyncssh-1.15.1.tar.gz) = 016df95d4a46802c8f72be1167427ca58868fc39
+SHA512 (asyncssh-1.15.1.tar.gz) = 0968857e84f2399aad9581147eda5d9ecaae9d9f736c24c5f6804e2af569a738ad3548f3f8f4cc75970f5a68636a829118c39880143de0cf6b453fa50fad036d
+Size (asyncssh-1.15.1.tar.gz) = 310892 bytes



Home | Main Index | Thread Index | Old Index