README.NTLM
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. NTLM support by Grant Edwards <grante@visi.com>
  2. This directory contains sources for a library which provides
  3. routines to manipulate the structures used for the client end
  4. of Microsoft NTLM authentication.
  5. This code (the ntlm.h file and smb*.[ch] files) was taken mostly from
  6. the Samba project and was initially intended for use with Microsoft
  7. Exchange Server when it is configured to require NTLM authentication
  8. for clients of its IMAP server.
  9. Not much effort has been put into making this portable, and the author
  10. only know for sure that it works on i386 Linux glibc systems -- though
  11. there shouldn't be anything all that system-specific anywhere.  System
  12. byte order differences should already be taken care of.
  13. USAGE  
  14.   
  15. The application program must convert these structures to/from base64
  16. which is used to transfer data for IMAP authentication.  For example
  17. usage see the sources for the mutt MUA or here in the fetchmail
  18. package.
  19. In general the usage is something like shown below (no, I don't
  20. know if this code even compiles, but you get the idea
  21. hopefully):
  22. #include <ntlm.h>
  23. extern char *seqTag;  /* IMAP sequence number */
  24. int imap_auth_ntlm(char *user, char *domain, char *pass)
  25. {
  26.   tSmbNtlmAuthRequest   request;              
  27.   tSmbNtlmAuthChallenge challenge;
  28.   tSmbNtlmAuthResponse  response;
  29.   char buffer[512];
  30.   char tmpstr[32];
  31.   
  32.   writeToServer("%s AUTHENTICATE NTLMrn",seqTag);
  33.   readFromServer(buffer)
  34.   
  35.   /* buffer should be "+", but we won't show code to check */
  36.   /* 
  37.    * prepare the request, convert to base64, and send it to
  38.    * the the server.  My server didn't care about domain, and NULL
  39.    * worked fine.
  40.    */
  41.   buildSmbNtlmAuthRequest(&request,user,domain);
  42.   convertToBase64(buffer, &request, SmbLength(&request));
  43.   writeToServer("%srn",buffer);
  44.   
  45.   /* read challange data from server, convert from base64 */
  46.   
  47.   readFromServer(buffer);
  48.   
  49.   /* buffer should contain the string "+ [base 64 data]" */
  50.   
  51.   convertFromBase64(&challenge, buffer+2);
  52.   
  53.   /* prepare response, convert to base64, send to server */
  54.   
  55.   buildSmbNtlmAuthResponse(&challenge, &response, user, pass);
  56.   convertToBase64(buffer,&response,SmbLength(&response));
  57.   writeToServer("%srn",buffer);
  58.   
  59.   /* read line from server, it should be "[seq] OK blah blah blah" */
  60.   
  61.   readFromServer(buffer);
  62.   
  63.   sprintf(tmpstr,"%s OK",seqTag);
  64.   
  65.   if (strncmp(buffer,tmpstr,strlen(tmpstr)))
  66.   {
  67.     /* login failed */
  68.     return -1;
  69.   }
  70.   
  71.   return 0;
  72. }