Date: Sat, 10 Mar 2018 08:39:50 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464052 - in head/security: . py-ntlm-auth Message-ID: <201803100839.w2A8doTc065567@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Mar 10 08:39:50 2018 New Revision: 464052 URL: https://svnweb.freebsd.org/changeset/ports/464052 Log: New port: security/py-ntlm-auth: Create NTLM authentication structures Approved by: tcberner (mentor, implicit) Added: head/security/py-ntlm-auth/ head/security/py-ntlm-auth/Makefile (contents, props changed) head/security/py-ntlm-auth/distinfo (contents, props changed) head/security/py-ntlm-auth/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Mar 10 08:33:10 2018 (r464051) +++ head/security/Makefile Sat Mar 10 08:39:50 2018 (r464052) @@ -942,6 +942,7 @@ SUBDIR += py-mhash SUBDIR += py-mixbox SUBDIR += py-mnemonic + SUBDIR += py-ntlm-auth SUBDIR += py-oauth2client SUBDIR += py-oauthlib SUBDIR += py-obfsproxy-tor Added: head/security/py-ntlm-auth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-ntlm-auth/Makefile Sat Mar 10 08:39:50 2018 (r464052) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= ntlm-auth +DISTVERSION= 1.1.0 +CATEGORIES= security python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Create NTLM authentication structures + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/security/py-ntlm-auth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-ntlm-auth/distinfo Sat Mar 10 08:39:50 2018 (r464052) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520670546 +SHA256 (ntlm-auth-1.1.0.tar.gz) = d4b21b85cbbf53ec1f16e435898eb9ab80f1e8f1571f0b7e2eb038c0517dd47a +SIZE (ntlm-auth-1.1.0.tar.gz) = 24740 Added: head/security/py-ntlm-auth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py-ntlm-auth/pkg-descr Sat Mar 10 08:39:50 2018 (r464052) @@ -0,0 +1,21 @@ +This library handles the low-level details of NTLM authentication for use +in authenticating with a service that uses NTLM. It will create and parse +the 3 different message types in the order required and produce a base64 +encoded value that can be attached to the HTTP header. + +The goal of this library is to offer full NTLM support including signing and +sealing of messages as well as supporting MIC for message integrity and the +ability to customise and set limits on the messages sent. Please see Features +and Backlog for a list of what is and is not currently supported. + +Features: +* LM, NTLM and NTLMv2 authentication +* NTLM1 and NTLM2 extended session security +* Set the The NTLM Compatibility level when sending messages +* Channel Binding Tokens support, need to pass in the SHA256 hash + of the certificate for it to work +* Support for MIC to enhance the integrity of the messages +* Support for session security with signing and sealing messages + after authentication happens + +WWW: https://github.com/jborean93/ntlm-auth
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803100839.w2A8doTc065567>