~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to lib/curl_ntlm_msgs.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-05-07 12:16:37 UTC
  • mfrom: (3.4.37 sid)
  • Revision ID: package-import@ubuntu.com-20130507121637-9t3i98qgsyr9dw5d
Tags: 7.30.0-1ubuntu1
* Resynchronize on Debian. Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.
* Add warning to debian/patches/series.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 *                            | (__| |_| |  _ <| |___
6
6
 *                             \___|\___/|_| \_\_____|
7
7
 *
8
 
 * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
 
8
 * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
9
9
 *
10
10
 * This software is licensed as described in the file COPYING, which
11
11
 * you should have received as part of this distribution. The terms
179
179
/*
180
180
 * Curl_ntlm_decode_type2_message()
181
181
 *
182
 
 * This is used to decode a ntlm type-2 message received from a: HTTP, SMTP
183
 
 * or POP3 server. The message is first decoded from a base64 string into a
184
 
 * raw ntlm message and checked for validity before the appropriate data for
185
 
 * creating a type-3 message is written to the given ntlm data structure.
 
182
 * This is used to decode a ntlm type-2 message received from a HTTP or SASL
 
183
 * based (such as SMTP, POP3 or IMAP) server. The message is first decoded
 
184
 * from a base64 string into a raw ntlm message and checked for validity
 
185
 * before the appropriate data for creating a type-3 message is written to
 
186
 * the given ntlm data structure.
186
187
 *
187
188
 * Parameters:
188
189
 *
305
306
/*
306
307
 * Curl_ntlm_create_type1_message()
307
308
 *
308
 
 * This is used to generate an already encoded NTLM type-1 message ready
309
 
 * for sending to the recipient, be it a: HTTP, SMTP or POP3 server,
310
 
 * using the appropriate compile time crypo API.
 
309
 * This is used to generate an already encoded NTLM type-1 message ready for
 
310
 * sending to the recipient, be it a HTTP or SASL based (such as SMTP, POP3
 
311
 * or IMAP) server, using the appropriate compile time crypo API.
311
312
 *
312
313
 * Parameters:
313
314
 *
552
553
/*
553
554
 * Curl_ntlm_create_type3_message()
554
555
 *
555
 
 * This is used to generate an already encoded NTLM type-3 message ready
556
 
 * for sending to the recipient, be it a: HTTP, SMTP or POP3 server,
557
 
 * using the appropriate compile time crypo API.
 
556
 * This is used to generate an already encoded NTLM type-3 message ready for
 
557
 * sending to the recipient, be it a HTTP or SASL based (such as SMTP, POP3
 
558
 * or IMAP) server, using the appropriate compile time crypo API.
558
559
 *
559
560
 * Parameters:
560
561
 *