0N/A/*
2362N/A * Copyright (c) 2002, 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/Apackage com.sun.jndi.ldap;
0N/A
0N/Aimport java.util.Arrays; // JDK 1.2
0N/Aimport java.util.Hashtable;
0N/A
0N/Aimport java.io.OutputStream;
0N/Aimport javax.naming.ldap.Control;
0N/A
0N/A/**
0N/A * Extends SimpleClientId to add property values specific for Digest-MD5.
0N/A * This includes:
0N/A * realm, authzid, qop, strength, maxbuffer, mutual-auth, reuse,
0N/A * all policy-related selection properties.
0N/A * Two DigestClientIds are identical iff they pass the SimpleClientId
0N/A * equals() test and that all of these property values are the same.
0N/A *
0N/A * @author Rosanna Lee
0N/A */
0N/Aclass DigestClientId extends SimpleClientId {
0N/A private static final String[] SASL_PROPS = {
0N/A "java.naming.security.sasl.authorizationId",
0N/A "java.naming.security.sasl.realm",
0N/A "javax.security.sasl.qop",
0N/A "javax.security.sasl.strength",
0N/A "javax.security.sasl.reuse",
0N/A "javax.security.sasl.server.authentication",
0N/A "javax.security.sasl.maxbuffer",
0N/A "javax.security.sasl.policy.noplaintext",
0N/A "javax.security.sasl.policy.noactive",
0N/A "javax.security.sasl.policy.nodictionary",
0N/A "javax.security.sasl.policy.noanonymous",
0N/A "javax.security.sasl.policy.forward",
0N/A "javax.security.sasl.policy.credentials",
0N/A };
0N/A
0N/A final private String[] propvals;
0N/A final private int myHash;
0N/A private int pHash = 0;
0N/A
0N/A DigestClientId(int version, String hostname, int port,
0N/A String protocol, Control[] bindCtls, OutputStream trace,
0N/A String socketFactory, String username,
0N/A Object passwd, Hashtable env) {
0N/A
0N/A super(version, hostname, port, protocol, bindCtls, trace,
0N/A socketFactory, username, passwd);
0N/A
0N/A if (env == null) {
0N/A propvals = null;
0N/A } else {
0N/A // Could be smarter and apply default values for props
0N/A // but for now, we just record and check exact matches
0N/A propvals = new String[SASL_PROPS.length];
0N/A for (int i = 0; i < SASL_PROPS.length; i++) {
0N/A propvals[i] = (String) env.get(SASL_PROPS[i]);
0N/A if (propvals[i] != null) {
0N/A pHash = pHash * 31 + propvals[i].hashCode();
0N/A }
0N/A }
0N/A }
0N/A myHash = super.hashCode() + pHash;
0N/A }
0N/A
0N/A public boolean equals(Object obj) {
0N/A if (!(obj instanceof DigestClientId)) {
0N/A return false;
0N/A }
0N/A DigestClientId other = (DigestClientId)obj;
0N/A return myHash == other.myHash
0N/A && pHash == other.pHash
0N/A && super.equals(obj)
0N/A && Arrays.equals(propvals, other.propvals);
0N/A }
0N/A
0N/A public int hashCode() {
0N/A return myHash;
0N/A }
0N/A
0N/A public String toString() {
0N/A if (propvals != null) {
0N/A StringBuffer buf = new StringBuffer();
0N/A for (int i = 0; i < propvals.length; i++) {
0N/A buf.append(':');
0N/A if (propvals[i] != null) {
0N/A buf.append(propvals[i]);
0N/A }
0N/A }
0N/A return super.toString() + buf.toString();
0N/A } else {
0N/A return super.toString();
0N/A }
0N/A }
0N/A}