head	1.10;
access;
symbols
	pkgsrc-2023Q2:1.9.0.10
	pkgsrc-2023Q2-base:1.9
	pkgsrc-2023Q1:1.9.0.8
	pkgsrc-2023Q1-base:1.9
	pkgsrc-2022Q4:1.9.0.6
	pkgsrc-2022Q4-base:1.9
	pkgsrc-2022Q3:1.9.0.4
	pkgsrc-2022Q3-base:1.9
	pkgsrc-2022Q2:1.9.0.2
	pkgsrc-2022Q2-base:1.9
	pkgsrc-2022Q1:1.8.0.2
	pkgsrc-2022Q1-base:1.8
	pkgsrc-2021Q4:1.7.0.12
	pkgsrc-2021Q4-base:1.7
	pkgsrc-2021Q3:1.7.0.10
	pkgsrc-2021Q3-base:1.7
	pkgsrc-2021Q2:1.7.0.8
	pkgsrc-2021Q2-base:1.7
	pkgsrc-2021Q1:1.7.0.6
	pkgsrc-2021Q1-base:1.7
	pkgsrc-2020Q4:1.7.0.4
	pkgsrc-2020Q4-base:1.7
	pkgsrc-2020Q3:1.7.0.2
	pkgsrc-2020Q3-base:1.7
	pkgsrc-2020Q2:1.6.0.8
	pkgsrc-2020Q2-base:1.6
	pkgsrc-2020Q1:1.6.0.4
	pkgsrc-2020Q1-base:1.6
	pkgsrc-2019Q4:1.6.0.6
	pkgsrc-2019Q4-base:1.6
	pkgsrc-2019Q3:1.6.0.2
	pkgsrc-2019Q3-base:1.6
	pkgsrc-2019Q2:1.5.0.2
	pkgsrc-2019Q2-base:1.5
	pkgsrc-2019Q1:1.4.0.6
	pkgsrc-2019Q1-base:1.4
	pkgsrc-2018Q4:1.4.0.4
	pkgsrc-2018Q4-base:1.4
	pkgsrc-2018Q3:1.4.0.2
	pkgsrc-2018Q3-base:1.4
	pkgsrc-2018Q2:1.3.0.4
	pkgsrc-2018Q2-base:1.3
	pkgsrc-2018Q1:1.3.0.2
	pkgsrc-2018Q1-base:1.3
	pkgsrc-2017Q4:1.2.0.2
	pkgsrc-2017Q4-base:1.2
	pkgsrc-2017Q3:1.1.0.4
	pkgsrc-2017Q3-base:1.1;
locks; strict;
comment	@# @;


1.10
date	2023.08.03.08.30.50;	author adam;	state dead;
branches;
next	1.9;
commitid	outP3PkamUmdIjzE;

1.9
date	2022.04.21.11.00.01;	author wiz;	state Exp;
branches;
next	1.8;
commitid	0f49QkLAsVT0C3BD;

1.8
date	2022.01.04.20.54.43;	author wiz;	state Exp;
branches;
next	1.7;
commitid	CYyhdK9qtoffkmnD;

1.7
date	2020.07.10.19.43.31;	author adam;	state Exp;
branches;
next	1.6;
commitid	6bOsHI9vgyTWozfC;

1.6
date	2019.08.27.10.11.26;	author adam;	state Exp;
branches;
next	1.5;
commitid	PIAiFonrWcbqsEAB;

1.5
date	2019.04.26.15.20.14;	author adam;	state Exp;
branches;
next	1.4;
commitid	VRIAbNU3ZG1w7SkB;

1.4
date	2018.07.06.07.52.40;	author adam;	state Exp;
branches;
next	1.3;
commitid	fNayIshozQGT53JA;

1.3
date	2018.03.08.12.45.34;	author adam;	state Exp;
branches;
next	1.2;
commitid	33dUOjvfmRWtzEtA;

1.2
date	2017.10.31.08.27.03;	author adam;	state Exp;
branches;
next	1.1;
commitid	z0ZocDXttRLTfbdA;

1.1
date	2017.09.04.18.57.20;	author joerg;	state Exp;
branches;
next	;
commitid	7YRyrNXSMvLJzU5A;


desc
@@


1.10
log
@py-ntlm-auth: removed; This library is deprecated in favour of pyspnego
@
text
@# $NetBSD: Makefile,v 1.9 2022/04/21 11:00:01 wiz Exp $

DISTNAME=	ntlm-auth-1.5.0
PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
PKGREVISION=	1
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

PYTHON_VERSIONED_DEPENDENCIES+=	cryptography

USE_LANGUAGES=	# none

.include "../../lang/python/egg.mk"
.include "../../lang/python/versioned_dependencies.mk"
.include "../../mk/bsd.pkg.mk"
@


1.9
log
@*: convert to versioned_dependencies for py-cryptography
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.8 2022/01/04 20:54:43 wiz Exp $
@


1.8
log
@*: bump PKGREVISION for egg.mk users

They now have a tool dependency on py-setuptools instead of a DEPENDS
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.7 2020/07/10 19:43:31 adam Exp $
d14 1
a14 1
DEPENDS+=	${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography
d19 1
@


1.7
log
@py-ntlm-auth: updated to 1.5.0

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
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.6 2019/08/27 10:11:26 adam Exp $
d5 1
@


1.6
log
@py-ntlm-auth: updated to 1.4.0

1.4.0:
* Added the session_key attribute to the NtlmContext class so the session key can be accessed in downstream libraries
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.5 2019/04/26 15:20:14 adam Exp $
d3 1
a3 1
DISTNAME=	ntlm-auth-1.4.0
@


1.5
log
@py-ntlm-auth: updated to 1.3.0

1.3.0:
Added optional dependency for cryptography for faster RC4 cipher calls
Removed the deprecation warning for Ntlm, this is still advised not to use but there's no major harm keep it in place for older hosts
Add CI test for Python 3.7 and 3.8
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.4 2018/07/06 07:52:40 adam Exp $
d3 1
a3 1
DISTNAME=	ntlm-auth-1.3.0
@


1.4
log
@py-ntlm-auth: updated to 1.2.0

1.2.0:
Deprecated ntlm_auth.ntlm.Ntlm in favour of ntlm_auth.ntlm.NtlmContext
This is because Ntlm is heavily geared towards HTTP auth which is not always the case, NtlmContext makes things more generic
Updated docs and tests to reflect this
Dropped support for Python 3.3
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.3 2018/03/08 12:45:34 adam Exp $
d3 1
a3 1
DISTNAME=	ntlm-auth-1.2.0
d13 2
@


1.3
log
@py-ntlm-auth: updated to 1.1.0

1.1.0:
Removed DES code as the license was found to be incorrect from the source
Added new DES code not based on the original
Fixed up some deprecation warnings
Changed tests from running unittest to py.test
Changed licence from GPL to MIT as code is not all my own
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.2 2017/10/31 08:27:03 adam Exp $
d3 1
a3 1
DISTNAME=	ntlm-auth-1.1.0
@


1.2
log
@py-ntlm-auth: updated to 1.0.6

Changes 1.0.6:
* More changes to packaging to better handle copyright and licensing
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2017/09/04 18:57:20 joerg Exp $
d3 1
a3 1
DISTNAME=	ntlm-auth-1.0.6
d11 1
a11 3
LICENSE=	gnu-lgpl-v3

DEPENDS+=	${PYPKGPREFIX}-six>=1.10:../../lang/py-six
@


1.1
log
@Add py-ntlm-auth-1.0.5:

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.

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
@
text
@d1 1
a1 1
# $NetBSD: Makefile,v 1.1 2017/04/23 05:39:26 markd Exp $
d3 1
a3 1
DISTNAME=	ntlm-auth-1.0.5
d5 1
a5 1
CATEGORIES=	security
d15 2
@

