python-ntlm
python-ntlm copied to clipboard
Automatically exported from code.google.com/p/python-ntlm
``` Hi, I'm one of the maintainers for the feedparser project. I've just received a bug report that I have no way of helping troubleshoot nor test fixes: https://code.google.com/p/feedparser/issues/detail?id=267 The...
``` What steps will reproduce the problem? 1. sudo pip install python-ntlm 2. ntlm_example_simple 3. ntlm_example_extended What is the expected output? What do you see instead? $ ntlm_example_simple Traceback (most...
``` What steps will reproduce the problem? 1. build and install python 2.6.5 on suse linux 2. run the following python code digest = hashlib.new('md4', 'password'.encode('utf-16le')).digest() 3. you will see...
``` What steps will reproduce the problem? 1. I manually installed haslib 20081119 from http://code.krypto.org/python/hashlib/ Using OpenSSL version 0x0090802f from Headers: /usr/include Library: /usr/lib/libssl.so running install running build running build_py...
``` Implemented a IMAPNtlmAuthHandler class for using NTML with IMAP. Example: from imaplib import IMAP4 from ntlm.IMAPNtlmAuthHandler import IMAPNtlmAuthHandler imap = IMAP4("my.imap.server") imap.authenticate("NTLM", IMapNtlmAuthHandler(r"DOMAIN\username", "password")) Notes: * I moved the...
``` What steps will reproduce the problem? 1. Use the example usage in HTTPNtlmAuthHandler.py, modify url, user, and password as needed. url points to a asp session based server 2....
``` What steps will reproduce the problem? 1. Try to retrieve a ntlm secured url that respond with an error code, example code 500. What is the expected output? What...
``` I'm needing to provide NTLM authentication to clients from a server. This library could in theory support clients, proxies and servers, using common classes for the message structures etc....