src/java.security.sasl/share/classes/javax/security/sasl/Sasl.java
author lucy
Mon, 09 Oct 2017 11:43:42 +0200
changeset 47606 660175b829e8
parent 47216 71c04702a3d5
child 54802 b0a1572ec64a
permissions -rw-r--r--
8187964: [s390][ppc]: Intrinsify Math.multiplyHigh(long, long) Reviewed-by: mdoerr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 37348
diff changeset
     2
 * Copyright (c) 1999, 2017, 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 javax.security.sasl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import javax.security.auth.callback.CallbackHandler;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.Enumeration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.Set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.HashSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.util.Collections;
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
    36
import java.security.InvalidParameterException;
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
    37
import java.security.NoSuchAlgorithmException;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.security.Provider;
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
    39
import java.security.Provider.Service;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.security.Security;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * A static class for creating SASL clients and servers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * This class defines the policy of how to locate, load, and instantiate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * SASL clients and servers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * For example, an application or library gets a SASL client by doing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * something like:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *<blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * SaslClient sc = Sasl.createSaslClient(mechanisms,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 *     authorizationId, protocol, serverName, props, callbackHandler);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 *</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * It can then proceed to use the instance to create an authentication connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * Similarly, a server gets a SASL server by using code that looks as follows:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *<blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * SaslServer ss = Sasl.createSaslServer(mechanism,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 *     protocol, serverName, props, callbackHandler);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *</pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * @author Rosanna Lee
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * @author Rob Weltman
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
public class Sasl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    // Cannot create one of these
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    private Sasl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * The name of a property that specifies the quality-of-protection to use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * The property contains a comma-separated, ordered list
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * of quality-of-protection values that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * client or server is willing to support.  A qop value is one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * <ul>
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    78
     * <li>{@code "auth"} - authentication only</li>
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    79
     * <li>{@code "auth-int"} - authentication plus integrity protection</li>
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    80
     * <li>{@code "auth-conf"} - authentication plus integrity and confidentiality
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
     * protection</li>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * The order of the list specifies the preference order of the client or
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    85
     * server. If this property is absent, the default qop is {@code "auth"}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    86
     * The value of this constant is {@code "javax.security.sasl.qop"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    public static final String QOP = "javax.security.sasl.qop";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * The name of a property that specifies the cipher strength to use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * The property contains a comma-separated, ordered list
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * of cipher strength values that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * the client or server is willing to support. A strength value is one of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * <ul>
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    96
     * <li>{@code "low"}</li>
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    97
     * <li>{@code "medium"}</li>
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
    98
     * <li>{@code "high"}</li>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * The order of the list specifies the preference order of the client or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * server.  An implementation should allow configuration of the meaning
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * of these values.  An application may use the Java Cryptography
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * Extension (JCE) with JCE-aware mechanisms to control the selection of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * cipher suites that match the strength values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * <BR>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * If this property is absent, the default strength is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   107
     * {@code "high,medium,low"}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   108
     * The value of this constant is {@code "javax.security.sasl.strength"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    public static final String STRENGTH = "javax.security.sasl.strength";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * The name of a property that specifies whether the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * server must authenticate to the client. The property contains
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   115
     * {@code "true"} if the server must
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   116
     * authenticate the to client; {@code "false"} otherwise.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   117
     * The default is {@code "false"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * <br>The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   119
     * {@code "javax.security.sasl.server.authentication"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
    public static final String SERVER_AUTH =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    "javax.security.sasl.server.authentication";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /**
14340
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   125
     * The name of a property that specifies the bound server name for
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   126
     * an unbound server. A server is created as an unbound server by setting
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   127
     * the {@code serverName} argument in {@link #createSaslServer} as null.
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   128
     * The property contains the bound host name after the authentication
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   129
     * exchange has completed. It is only available on the server side.
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   130
     * <br>The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   131
     * {@code "javax.security.sasl.bound.server.name"}.
14340
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   132
     */
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   133
    public static final String BOUND_SERVER_NAME =
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   134
    "javax.security.sasl.bound.server.name";
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   135
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   136
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * The name of a property that specifies the maximum size of the receive
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   138
     * buffer in bytes of {@code SaslClient}/{@code SaslServer}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * The property contains the string representation of an integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * <br>If this property is absent, the default size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * is defined by the mechanism.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   142
     * <br>The value of this constant is {@code "javax.security.sasl.maxbuffer"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    public static final String MAX_BUFFER = "javax.security.sasl.maxbuffer";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * The name of a property that specifies the maximum size of the raw send
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   148
     * buffer in bytes of {@code SaslClient}/{@code SaslServer}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * The property contains the string representation of an integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * The value of this property is negotiated between the client and server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * during the authentication exchange.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   152
     * <br>The value of this constant is {@code "javax.security.sasl.rawsendsize"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    public static final String RAW_SEND_SIZE = "javax.security.sasl.rawsendsize";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * The name of a property that specifies whether to reuse previously
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * authenticated session information. The property contains "true" if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * mechanism implementation may attempt to reuse previously authenticated
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * session information; it contains "false" if the implementation must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * not reuse previously authenticated session information.  A setting of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * "true" serves only as a hint: it does not necessarily entail actual
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * reuse because reuse might not be possible due to a number of reasons,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * including, but not limited to, lack of mechanism support for reuse,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * expiration of reusable information, and the peer's refusal to support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * reuse.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * The property's default value is "false".  The value of this constant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * is "javax.security.sasl.reuse".
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     * Note that all other parameters and properties required to create a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * SASL client/server instance must be provided regardless of whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * this property has been supplied. That is, you cannot supply any less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * information in anticipation of reuse.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * Mechanism implementations that support reuse might allow customization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * of its implementation, for factors such as cache size, timeouts, and
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 18830
diff changeset
   178
     * criteria for reusability. Such customizations are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * implementation-dependent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     public static final String REUSE = "javax.security.sasl.reuse";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * The name of a property that specifies
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * whether mechanisms susceptible to simple plain passive attacks (e.g.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * "PLAIN") are not permitted. The property
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   187
     * contains {@code "true"} if such mechanisms are not permitted;
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   188
     * {@code "false"} if such mechanisms are permitted.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   189
     * The default is {@code "false"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * <br>The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   191
     * {@code "javax.security.sasl.policy.noplaintext"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    public static final String POLICY_NOPLAINTEXT =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    "javax.security.sasl.policy.noplaintext";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * The name of a property that specifies whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * mechanisms susceptible to active (non-dictionary) attacks
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     * are not permitted.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   200
     * The property contains {@code "true"}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * if mechanisms susceptible to active attacks
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   202
     * are not permitted; {@code "false"} if such mechanisms are permitted.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   203
     * The default is {@code "false"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * <br>The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   205
     * {@code "javax.security.sasl.policy.noactive"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    public static final String POLICY_NOACTIVE =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    "javax.security.sasl.policy.noactive";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     * The name of a property that specifies whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * mechanisms susceptible to passive dictionary attacks are not permitted.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   213
     * The property contains {@code "true"}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * if mechanisms susceptible to dictionary attacks are not permitted;
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   215
     * {@code "false"} if such mechanisms are permitted.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   216
     * The default is {@code "false"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   219
     * {@code "javax.security.sasl.policy.nodictionary"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
    public static final String POLICY_NODICTIONARY =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    "javax.security.sasl.policy.nodictionary";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * The name of a property that specifies whether mechanisms that accept
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   226
     * anonymous login are not permitted. The property contains {@code "true"}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * if mechanisms that accept anonymous login are not permitted;
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   228
     * {@code "false"}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   229
     * if such mechanisms are permitted. The default is {@code "false"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   232
     * {@code "javax.security.sasl.policy.noanonymous"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    public static final String POLICY_NOANONYMOUS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    "javax.security.sasl.policy.noanonymous";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
      * The name of a property that specifies whether mechanisms that implement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
      * forward secrecy between sessions are required. Forward secrecy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
      * means that breaking into one session will not automatically
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
      * provide information for breaking into future sessions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
      * The property
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   243
      * contains {@code "true"} if mechanisms that implement forward secrecy
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   244
      * between sessions are required; {@code "false"} if such mechanisms
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   245
      * are not required. The default is {@code "false"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
      *<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
      * The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   248
      * {@code "javax.security.sasl.policy.forward"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
      */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    public static final String POLICY_FORWARD_SECRECY =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    "javax.security.sasl.policy.forward";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * The name of a property that specifies whether
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * mechanisms that pass client credentials are required. The property
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   256
     * contains {@code "true"} if mechanisms that pass
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   257
     * client credentials are required; {@code "false"}
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   258
     * if such mechanisms are not required. The default is {@code "false"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     *<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   261
     * {@code "javax.security.sasl.policy.credentials"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    public static final String POLICY_PASS_CREDENTIALS =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    "javax.security.sasl.policy.credentials";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * The name of a property that specifies the credentials to use.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     * The property contains a mechanism-specific Java credential object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
     * Mechanism implementations may examine the value of this property
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     * to determine whether it is a class that they support.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * The property may be used to supply credentials to a mechanism that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * supports delegated authentication.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     *<br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * The value of this constant is
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   275
     * {@code "javax.security.sasl.credentials"}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    public static final String CREDENTIALS = "javax.security.sasl.credentials";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   280
     * Creates a {@code SaslClient} using the parameters supplied.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * This method uses the
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 37348
diff changeset
   283
     * {@extLink security_guide_jca JCA Security Provider Framework},
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 37348
diff changeset
   284
     * described in the
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 37348
diff changeset
   285
     * "Java Cryptography Architecture (JCA) Reference Guide", for
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   286
     * locating and selecting a {@code SaslClient} implementation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * First, it
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   289
     * obtains an ordered list of {@code SaslClientFactory} instances from
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * the registered security providers for the "SaslClientFactory" service
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * and the specified SASL mechanism(s). It then invokes
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   292
     * {@code createSaslClient()} on each factory instance on the list
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   293
     * until one produces a non-null {@code SaslClient} instance. It returns
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   294
     * the non-null {@code SaslClient} instance, or null if the search fails
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   295
     * to produce a non-null {@code SaslClient} instance.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * A security provider for SaslClientFactory registers with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * JCA Security Provider Framework keys of the form <br>
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   299
     * {@code SaslClientFactory.}<em>{@code mechanism_name}</em>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * <br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * and values that are class names of implementations of
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   302
     * {@code javax.security.sasl.SaslClientFactory}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * For example, a provider that contains a factory class,
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   305
     * {@code com.wiz.sasl.digest.ClientFactory}, that supports the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * "DIGEST-MD5" mechanism would register the following entry with the JCA:
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   307
     * {@code SaslClientFactory.DIGEST-MD5 com.wiz.sasl.digest.ClientFactory}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * See the
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 14342
diff changeset
   310
     * "Java Cryptography Architecture API Specification &amp; Reference"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * for information about how to install and configure security service
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     *  providers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     *
33241
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   314
     * @implNote
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   315
     * The JDK Reference Implementation additionally uses the
37348
9ccec3170d5e 8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents: 33241
diff changeset
   316
     * {@code jdk.security.provider.preferred}
9ccec3170d5e 8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents: 33241
diff changeset
   317
     * {@link Security#getProperty(String) Security} property to determine
33241
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   318
     * the preferred provider order for the specified algorithm. This
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   319
     * may be different than the order of providers returned by
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   320
     * {@link Security#getProviders() Security.getProviders()}.
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   321
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @param mechanisms The non-null list of mechanism names to try. Each is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * IANA-registered name of a SASL mechanism. (e.g. "GSSAPI", "CRAM-MD5").
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * @param authorizationId The possibly null protocol-dependent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * identification to be used for authorization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * If null or empty, the server derives an authorization
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * ID from the client's authentication credentials.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * When the SASL authentication completes successfully,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * the specified entity is granted access.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * @param protocol The non-null string name of the protocol for which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * the authentication is being performed (e.g., "ldap").
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @param serverName The non-null fully-qualified host name of the server
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * to authenticate to.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     * @param props The possibly null set of properties used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
     * select the SASL mechanism and to configure the authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
     * exchange of the selected mechanism.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   340
     * For example, if {@code props} contains the
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   341
     * {@code Sasl.POLICY_NOPLAINTEXT} property with the value
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   342
     * {@code "true"}, then the selected
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * SASL mechanism must not be susceptible to simple plain passive attacks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * In addition to the standard properties declared in this class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * other, possibly mechanism-specific, properties can be included.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * Properties not relevant to the selected mechanism are ignored,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * including any map entries with non-String keys.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @param cbh The possibly null callback handler to used by the SASL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * mechanisms to get further information from the application/library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * to complete the authentication. For example, a SASL mechanism might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * require the authentication ID, password and realm from the caller.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   353
     * The authentication ID is requested by using a {@code NameCallback}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   354
     * The password is requested by using a {@code PasswordCallback}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   355
     * The realm is requested by using a {@code RealmChoiceCallback} if there is a list
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   356
     * of realms to choose from, and by using a {@code RealmCallback} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     * the realm must be entered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   359
     *@return A possibly null {@code SaslClient} created using the parameters
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   360
     * supplied. If null, cannot find a {@code SaslClientFactory}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * that will produce one.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   362
     *@exception SaslException If cannot create a {@code SaslClient} because
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * of an error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
    public static SaslClient createSaslClient(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        String[] mechanisms,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        String authorizationId,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        String protocol,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        String serverName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        Map<String,?> props,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        CallbackHandler cbh) throws SaslException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        SaslClient mech = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        SaslClientFactory fac;
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   375
        Service service;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        String mechName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        for (int i = 0; i < mechanisms.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            if ((mechName=mechanisms[i]) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                throw new NullPointerException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
                    "Mechanism name cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
            } else if (mechName.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
                continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            }
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   385
            String type = "SaslClientFactory";
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   386
            Provider[] provs = Security.getProviders(type + "." + mechName);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   387
            if (provs != null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   388
                for (Provider p : provs) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   389
                    service = p.getService(type, mechName);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   390
                    if (service == null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   391
                        // no such service exists
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   392
                        continue;
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   393
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   395
                    fac = (SaslClientFactory) loadFactory(service);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   396
                    if (fac != null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   397
                        mech = fac.createSaslClient(
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   398
                            new String[]{mechanisms[i]}, authorizationId,
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   399
                            protocol, serverName, props, cbh);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   400
                        if (mech != null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   401
                            return mech;
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   402
                        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   410
    private static Object loadFactory(Service service)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        throws SaslException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
             * Load the implementation class with the same class loader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
             * that was used to load the provider.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
             * In order to get the class loader of a class, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
             * caller's class loader must be the same as or an ancestor of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
             * the class loader being returned. Otherwise, the caller must
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
             * have "getClassLoader" permission, or a SecurityException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
             * will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
             */
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   422
            return service.newInstance(null);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   423
        } catch (InvalidParameterException | NoSuchAlgorithmException e) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   424
            throw new SaslException("Cannot instantiate service " + service, e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   430
     * Creates a {@code SaslServer} for the specified mechanism.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * This method uses the
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 37348
diff changeset
   433
     * {@extLink security_guide_jca JCA Security Provider Framework},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * described in the
45665
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 37348
diff changeset
   435
     * "Java Cryptography Architecture (JCA) Reference Guide", for
6f21cd7ec80e 8178114: Fix guide links in security APIs
wetmore
parents: 37348
diff changeset
   436
     * locating and selecting a {@code SaslClient} implementation.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * First, it
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   439
     * obtains an ordered list of {@code SaslServerFactory} instances from
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * the registered security providers for the "SaslServerFactory" service
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     * and the specified mechanism. It then invokes
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   442
     * {@code createSaslServer()} on each factory instance on the list
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   443
     * until one produces a non-null {@code SaslServer} instance. It returns
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   444
     * the non-null {@code SaslServer} instance, or null if the search fails
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   445
     * to produce a non-null {@code SaslServer} instance.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     * A security provider for SaslServerFactory registers with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     * JCA Security Provider Framework keys of the form <br>
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   449
     * {@code SaslServerFactory.}<em>{@code mechanism_name}</em>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     * <br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
     * and values that are class names of implementations of
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   452
     * {@code javax.security.sasl.SaslServerFactory}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
     * For example, a provider that contains a factory class,
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   455
     * {@code com.wiz.sasl.digest.ServerFactory}, that supports the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
     * "DIGEST-MD5" mechanism would register the following entry with the JCA:
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   457
     * {@code SaslServerFactory.DIGEST-MD5  com.wiz.sasl.digest.ServerFactory}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
     *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
     * See the
18156
edb590d448c5 8016217: More javadoc warnings
alanb
parents: 14342
diff changeset
   460
     * "Java Cryptography Architecture API Specification &amp; Reference"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
     * for information about how to install and configure security
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
     * service providers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     *
33241
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   464
     * @implNote
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   465
     * The JDK Reference Implementation additionally uses the
37348
9ccec3170d5e 8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents: 33241
diff changeset
   466
     * {@code jdk.security.provider.preferred}
9ccec3170d5e 8152205: jdk.security.provider.preferred is ambiguously documented
ascarpino
parents: 33241
diff changeset
   467
     * {@link Security#getProperty(String) Security} property to determine
33241
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   468
     * the preferred provider order for the specified algorithm. This
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   469
     * may be different than the order of providers returned by
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   470
     * {@link Security#getProviders() Security.getProviders()}.
27eb2d6abda9 8133151: Preferred provider configuration for JCE
ascarpino
parents: 31270
diff changeset
   471
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     * @param mechanism The non-null mechanism name. It must be an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
     * IANA-registered name of a SASL mechanism. (e.g. "GSSAPI", "CRAM-MD5").
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
     * @param protocol The non-null string name of the protocol for which
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * the authentication is being performed (e.g., "ldap").
14340
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   476
     * @param serverName The fully qualified host name of the server, or null
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   477
     * if the server is not bound to any specific host name. If the mechanism
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   478
     * does not allow an unbound server, a {@code SaslException} will
14340
e150cbaf584e 7110803: SASL service for multiple hostnames
weijun
parents: 10709
diff changeset
   479
     * be thrown.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * @param props The possibly null set of properties used to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * select the SASL mechanism and to configure the authentication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * exchange of the selected mechanism.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   483
     * For example, if {@code props} contains the
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   484
     * {@code Sasl.POLICY_NOPLAINTEXT} property with the value
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   485
     * {@code "true"}, then the selected
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * SASL mechanism must not be susceptible to simple plain passive attacks.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * In addition to the standard properties declared in this class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * other, possibly mechanism-specific, properties can be included.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * Properties not relevant to the selected mechanism are ignored,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * including any map entries with non-String keys.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * @param cbh The possibly null callback handler to used by the SASL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * mechanisms to get further information from the application/library
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * to complete the authentication. For example, a SASL mechanism might
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * require the authentication ID, password and realm from the caller.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   496
     * The authentication ID is requested by using a {@code NameCallback}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   497
     * The password is requested by using a {@code PasswordCallback}.
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   498
     * The realm is requested by using a {@code RealmChoiceCallback} if there is a list
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   499
     * of realms to choose from, and by using a {@code RealmCallback} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * the realm must be entered.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     *
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   502
     *@return A possibly null {@code SaslServer} created using the parameters
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   503
     * supplied. If null, cannot find a {@code SaslServerFactory}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * that will produce one.
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   505
     *@exception SaslException If cannot create a {@code SaslServer} because
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * of an error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     **/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    public static SaslServer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        createSaslServer(String mechanism,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
                    String protocol,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
                    String serverName,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                    Map<String,?> props,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                    javax.security.auth.callback.CallbackHandler cbh)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        throws SaslException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
        SaslServer mech = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        SaslServerFactory fac;
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   518
        Service service;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        if (mechanism == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            throw new NullPointerException("Mechanism name cannot be null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        } else if (mechanism.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   526
        String type = "SaslServerFactory";
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   527
        Provider[] provs = Security.getProviders(type + "." + mechanism);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   528
        if (provs != null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   529
            for (Provider p : provs) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   530
                service = p.getService(type, mechanism);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   531
                if (service == null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   532
                    throw new SaslException("Provider does not support " +
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   533
                        mechanism + " " + type);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   534
                }
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   535
                fac = (SaslServerFactory) loadFactory(service);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   536
                if (fac != null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   537
                    mech = fac.createSaslServer(
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   538
                        mechanism, protocol, serverName, props, cbh);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   539
                    if (mech != null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   540
                        return mech;
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   541
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   549
     * Gets an enumeration of known factories for producing {@code SaslClient}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     * This method uses the same algorithm for locating factories as
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   551
     * {@code createSaslClient()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * @return A non-null enumeration of known factories for producing
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   553
     * {@code SaslClient}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * @see #createSaslClient
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    public static Enumeration<SaslClientFactory> getSaslClientFactories() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        Set<Object> facs = getFactories("SaslClientFactory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        final Iterator<Object> iter = facs.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        return new Enumeration<SaslClientFactory>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
            public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
                return iter.hasNext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
            public SaslClientFactory nextElement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                return (SaslClientFactory)iter.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    /**
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   570
     * Gets an enumeration of known factories for producing {@code SaslServer}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * This method uses the same algorithm for locating factories as
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   572
     * {@code createSaslServer()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * @return A non-null enumeration of known factories for producing
18830
90956ead732f 8020557: javadoc cleanup in javax.security
juh
parents: 18156
diff changeset
   574
     * {@code SaslServer}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * @see #createSaslServer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
    public static Enumeration<SaslServerFactory> getSaslServerFactories() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
        Set<Object> facs = getFactories("SaslServerFactory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        final Iterator<Object> iter = facs.iterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        return new Enumeration<SaslServerFactory>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            public boolean hasMoreElements() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                return iter.hasNext();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
            public SaslServerFactory nextElement() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                return (SaslServerFactory)iter.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    private static Set<Object> getFactories(String serviceName) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
        HashSet<Object> result = new HashSet<Object>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
        if ((serviceName == null) || (serviceName.length() == 0) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
            (serviceName.endsWith("."))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
            return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   598
        Provider[] provs = Security.getProviders();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
        Object fac;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   601
        for (Provider p : provs) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   603
            Iterator<Service> iter = p.getServices().iterator();
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   604
            while (iter.hasNext()) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   605
                Service s = iter.next();
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   606
                if (s.getType().equals(serviceName)) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   607
                    try {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   608
                        fac = loadFactory(s);
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   609
                        if (fac != null) {
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   610
                            result.add(fac);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
                        }
31270
e6470b24700d 7191662: JCE providers should be located via ServiceLoader
valeriep
parents: 25859
diff changeset
   612
                    } catch (Exception ignore) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        return Collections.unmodifiableSet(result);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
}