jdk/src/share/classes/sun/net/www/protocol/http/NegotiateAuthentication.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 4157 558590fb3b49
child 15258 dd5001103120
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
     2
 * Copyright (c) 2005, 2009, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4157
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.net.www.protocol.http;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    28
import java.net.URL;
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    29
import java.io.IOException;
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    30
import java.net.Authenticator.RequestorType;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.HashMap;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.net.www.HeaderParser;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import sun.misc.BASE64Decoder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.misc.BASE64Encoder;
3859
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 2942
diff changeset
    35
import static sun.net.www.protocol.http.AuthScheme.NEGOTIATE;
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 2942
diff changeset
    36
import static sun.net.www.protocol.http.AuthScheme.KERBEROS;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * NegotiateAuthentication:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author weijun.wang@sun.com
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
class NegotiateAuthentication extends AuthenticationInfo {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static final long serialVersionUID = 100L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    49
    final private HttpCallerInfo hci;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // These maps are used to manage the GSS availability for diffrent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    // hosts. The key for both maps is the host name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    // <code>supported</code> is set when isSupported is checked,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    // if it's true, a cached Negotiator is put into <code>cache</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    // the cache can be used only once, so after the first use, it's cleaned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    static HashMap <String, Boolean> supported = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    static HashMap <String, Negotiator> cache = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    // The HTTP Negotiate Helper
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private Negotiator negotiator = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
   /**
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    63
    * Constructor used for both WWW and proxy entries.
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    64
    * @param hci a schemed object.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    */
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    66
    public NegotiateAuthentication(HttpCallerInfo hci) {
3859
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 2942
diff changeset
    67
        super(RequestorType.PROXY==hci.authType ? PROXY_AUTHENTICATION : SERVER_AUTHENTICATION,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 2942
diff changeset
    68
              hci.scheme.equalsIgnoreCase("Negotiate") ? NEGOTIATE : KERBEROS,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 2942
diff changeset
    69
              hci.url,
8b82336dedb3 6882594: Remove static dependancy on NTLM authentication
chegar
parents: 2942
diff changeset
    70
              "");
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    71
        this.hci = hci;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * @return true if this authentication supports preemptive authorization
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    77
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
    78
    public boolean supportsPreemptiveAuthorization() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /**
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    83
     * Find out if the HttpCallerInfo supports Negotiate protocol. In order to
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    84
     * find out yes or no, an initialization of a Negotiator object against it
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    85
     * is tried. The generated object will be cached under the name of ths
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    86
     * hostname at a success try.<br>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    88
     * If this method is called for the second time on an HttpCallerInfo with
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    89
     * the same hostname, the answer is retrieved from cache.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * @return true if supported
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    93
    synchronized public static boolean isSupported(HttpCallerInfo hci) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        if (supported == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            supported = new HashMap <String, Boolean>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            cache = new HashMap <String, Negotiator>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        }
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
    98
        String hostname = hci.host;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        hostname = hostname.toLowerCase();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        if (supported.containsKey(hostname)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            return supported.get(hostname);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   104
        Negotiator neg = Negotiator.getNegotiator(hci);
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   105
        if (neg != null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            supported.put(hostname, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            // the only place cache.put is called. here we can make sure
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            // the object is valid and the oneToken inside is not null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            cache.put(hostname, neg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            return true;
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   111
        } else {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            supported.put(hostname, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Not supported. Must use the setHeaders() method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   120
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   121
    public String getHeaderValue(URL url, String method) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        throw new RuntimeException ("getHeaderValue not supported");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * Check if the header indicates that the current auth. parameters are stale.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * If so, then replace the relevant field with the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * and return true. Otherwise return false.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * returning true means the request can be retried with the same userid/password
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * returning false means we have to go back to the user to ask for a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * username password.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   133
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   134
    public boolean isAuthorizationStale (String header) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        return false; /* should not be called for Negotiate */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * Set header(s) on the given connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @param conn The connection to apply the header(s) to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @param p A source of header values for this connection, not used because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     *          HeaderParser converts the fields to lower case, use raw instead
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * @param raw The raw header field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @return true if all goes well, false if no headers were set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   146
    @Override
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   147
    public synchronized boolean setHeaders(HttpURLConnection conn, HeaderParser p, String raw) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            String response;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            byte[] incoming = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
            String[] parts = raw.split("\\s+");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            if (parts.length > 1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                incoming = new BASE64Decoder().decodeBuffer(parts[1]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            }
2942
37d9baeb7518 6578647: Undefined requesting URL in java.net.Authenticator.getPasswordAuthentication()
weijun
parents: 2
diff changeset
   156
            response = hci.scheme + " " + new B64Encoder().encode(
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                        incoming==null?firstToken():nextToken(incoming));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            conn.setAuthenticationProperty(getHeaderName(), response);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * return the first token.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @returns the token
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   169
     * @throws IOException if <code>Negotiator.getNegotiator()</code> or
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *                     <code>Negotiator.firstToken()</code> failed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    private byte[] firstToken() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        negotiator = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        if (cache != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
            synchronized(cache) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                negotiator = cache.get(getHost());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                if (negotiator != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                    cache.remove(getHost()); // so that it is only used once
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        if (negotiator == null) {
4157
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   183
            negotiator = Negotiator.getNegotiator(hci);
558590fb3b49 6893238: Move NTLM and SPNEGO implementations into separate packages
chegar
parents: 3952
diff changeset
   184
            if (negotiator == null) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                IOException ioe = new IOException("Cannot initialize Negotiator");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                throw ioe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        return negotiator.firstToken();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     * return more tokens
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * @param token the token to be fed into <code>negotiator.nextToken()</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * @returns the token
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * @throws IOException if <code>negotiator.nextToken()</code> throws Exception.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     *  May happen if the input token is invalid.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    private byte[] nextToken(byte[] token) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        return negotiator.nextToken(token);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    class B64Encoder extends BASE64Encoder {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        protected int bytesPerLine () {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            return 100000;  // as big as it can be, maybe INT_MAX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    // MS will send a final WWW-Authenticate even if the status is already
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    // 200 OK. The token can be fed into initSecContext() again to determine
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    // if the server can be trusted. This is not the same concept as Digest's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    // Authentication-Info header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    // Currently we ignore this header.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
}