8c55728ec6
1.5.0: * Added the `mic_present` property to the `NtlmContext` class to determine if a MIC has been added to the authentication message. * Added the `sign` and `verify` function to the `NtlmContext` to sign data and verify signatures. * Added the `reset_rc4_state` function to the `NtlmContext` to allow a caller to reset the incoming and outgoing RC4 cipher. * Added the `NTLMSSP_NEGOTIATE_UNICODE` flag to the negotiate message to ensure the challenge and authentication message's text fields can be unicode encoded
18 lines
520 B
Makefile
18 lines
520 B
Makefile
# $NetBSD: Makefile,v 1.7 2020/07/10 19:43:31 adam Exp $
|
|
|
|
DISTNAME= ntlm-auth-1.5.0
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= security python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=n/ntlm-auth/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/jborean93/ntlm-auth
|
|
COMMENT= NTLM authentication handler for python-requests
|
|
LICENSE= mit
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|