jdk/src/share/classes/sun/security/jgss/spnego/NegTokenTarg.java
author weijun
Tue, 03 May 2011 02:48:59 +0800
changeset 9549 24b7de36d243
parent 5506 202f599c92aa
permissions -rw-r--r--
7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478 Reviewed-by: valeriep
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9549
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
     2
 * Copyright (c) 2005, 2011, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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.security.jgss.spnego;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import org.ietf.jgss.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import sun.security.jgss.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import sun.security.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * Implements the SPNEGO NegTokenTarg token
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * as specified in RFC 2478
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * NegTokenTarg ::= SEQUENCE {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *      negResult   [0] ENUMERATED {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *              accept_completed        (0),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 *              accept_incomplete       (1),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *              reject                  (2) }   OPTIONAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *      supportedMech   [1] MechType            OPTIONAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *      responseToken   [2] OCTET STRING        OPTIONAL,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *      mechListMIC     [3] OCTET STRING        OPTIONAL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * MechType::= OBJECT IDENTIFIER
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * @author Seema Malkani
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
public class NegTokenTarg extends SpNegoToken {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private int negResult = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private Oid supportedMech = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    private byte[] responseToken = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private byte[] mechListMIC = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    NegTokenTarg(int result, Oid mech, byte[] token, byte[] mechListMIC)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        super(NEG_TOKEN_TARG_ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        this.negResult = result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        this.supportedMech = mech;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        this.responseToken = token;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        this.mechListMIC = mechListMIC;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    // Used by sun.security.jgss.wrapper.NativeGSSContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    // to parse SPNEGO tokens
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public NegTokenTarg(byte[] in) throws GSSException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        super(NEG_TOKEN_TARG_ID);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        parseToken(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    final byte[] encode() throws GSSException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            // create negTargToken
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            DerOutputStream targToken = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            // write the negotiated result with CONTEXT 00
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
            DerOutputStream result = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
            result.putEnumerated(negResult);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            targToken.write(DerValue.createTag(DerValue.TAG_CONTEXT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                                true, (byte) 0x00), result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            // supportedMech with CONTEXT 01
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            if (supportedMech != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                DerOutputStream mech = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                byte[] mechType = supportedMech.getDER();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                mech.write(mechType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                targToken.write(DerValue.createTag(DerValue.TAG_CONTEXT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                                                true, (byte) 0x01), mech);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            // response Token with CONTEXT 02
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            if (responseToken != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                DerOutputStream rspToken = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                rspToken.putOctetString(responseToken);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                targToken.write(DerValue.createTag(DerValue.TAG_CONTEXT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                                        true, (byte) 0x02), rspToken);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            // mechListMIC with CONTEXT 03
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            if (mechListMIC != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                    System.out.println("SpNegoToken NegTokenTarg: " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                                                "sending MechListMIC");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                DerOutputStream mic = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                mic.putOctetString(mechListMIC);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                targToken.write(DerValue.createTag(DerValue.TAG_CONTEXT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                                        true, (byte) 0x03), mic);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            } else if (GSSUtil.useMSInterop()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                // required for MS-interoperability
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                if (responseToken != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                    if (DEBUG) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                        System.out.println("SpNegoToken NegTokenTarg: " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                                "sending additional token for MS Interop");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                    DerOutputStream rspToken = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                    rspToken.putOctetString(responseToken);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                    targToken.write(DerValue.createTag(DerValue.TAG_CONTEXT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                                                true, (byte) 0x03), rspToken);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
            // insert in a SEQUENCE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            DerOutputStream out = new DerOutputStream();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            out.write(DerValue.tag_Sequence, targToken);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            return out.toByteArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            throw new GSSException(GSSException.DEFECTIVE_TOKEN, -1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
                "Invalid SPNEGO NegTokenTarg token : " + e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    private void parseToken(byte[] in) throws GSSException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            DerValue der = new DerValue(in);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            // verify NegotiationToken type token
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            if (!der.isContextSpecific((byte) NEG_TOKEN_TARG_ID)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                throw new IOException("SPNEGO NegoTokenTarg : " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                        "did not have the right token type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            DerValue tmp1 = der.data.getDerValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
            if (tmp1.tag != DerValue.tag_Sequence) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                throw new IOException("SPNEGO NegoTokenTarg : " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                        "did not have the Sequence tag");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
9549
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   156
            // parse various fields if present
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   157
            int lastField = -1;
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   158
            while (tmp1.data.available() > 0) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                DerValue tmp2 = tmp1.data.getDerValue();
9549
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   160
                if (tmp2.isContextSpecific((byte)0x00)) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   161
                    lastField = checkNextField(lastField, 0);
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   162
                    negResult = tmp2.data.getEnumerated();
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   163
                    if (DEBUG) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   164
                        System.out.println("SpNegoToken NegTokenTarg: negotiated" +
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   165
                                    " result = " + getNegoResultString(negResult));
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   166
                    }
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   167
                } else if (tmp2.isContextSpecific((byte)0x01)) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   168
                    lastField = checkNextField(lastField, 1);
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   169
                    ObjectIdentifier mech = tmp2.data.getOID();
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   170
                    supportedMech = new Oid(mech.toString());
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   171
                    if (DEBUG) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   172
                        System.out.println("SpNegoToken NegTokenTarg: " +
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   173
                                    "supported mechanism = " + supportedMech);
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   174
                    }
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   175
                } else if (tmp2.isContextSpecific((byte)0x02)) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   176
                    lastField = checkNextField(lastField, 2);
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   177
                    responseToken = tmp2.data.getOctetString();
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   178
                } else if (tmp2.isContextSpecific((byte)0x03)) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   179
                    lastField = checkNextField(lastField, 3);
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   180
                    if (!GSSUtil.useMSInterop()) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   181
                        mechListMIC = tmp2.data.getOctetString();
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   182
                        if (DEBUG) {
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   183
                            System.out.println("SpNegoToken NegTokenTarg: " +
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   184
                                                "MechListMIC Token = " +
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   185
                                                getHexBytes(mechListMIC));
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   186
                        }
24b7de36d243 7040151: SPNEGO GSS code does not parse tokens in accordance to RFC 2478
weijun
parents: 5506
diff changeset
   187
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        } catch (IOException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            throw new GSSException(GSSException.DEFECTIVE_TOKEN, -1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                "Invalid SPNEGO NegTokenTarg token : " + e.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    int getNegotiatedResult() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        return negResult;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    // Used by sun.security.jgss.wrapper.NativeGSSContext
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    // to find the supported mech in SPNEGO tokens
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    public Oid getSupportedMech() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        return supportedMech;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    byte[] getResponseToken() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        return responseToken;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    byte[] getMechListMIC() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
        return mechListMIC;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
}