Commit graph

7 commits

Author SHA1 Message Date
adam
8c55728ec6 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
2020-07-10 19:43:31 +00:00
adam
50261e9055 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
2019-08-27 10:11:26 +00:00
adam
8636a95f3e 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
2019-04-26 15:20:14 +00:00
adam
baeaaafae6 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
2018-07-06 07:52:40 +00:00
adam
3af5d443eb 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
2018-03-08 12:45:34 +00:00
adam
49230339d5 py-ntlm-auth: updated to 1.0.6
Changes 1.0.6:
* More changes to packaging to better handle copyright and licensing
2017-10-31 08:27:03 +00:00
joerg
e8c910d057 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
2017-09-04 18:57:20 +00:00