@@ -54,7 +54,7 @@ public class SignatureUtil {
54
54
* form of an OID, or the OID value if no match is found.
55
55
*/
56
56
private static String checkName (String algName ) {
57
- if (algName .indexOf ("." ) == - 1 ) {
57
+ if (! algName .contains ("." )) {
58
58
return algName ;
59
59
} else {
60
60
// convert oid to String
@@ -100,7 +100,7 @@ public static AlgorithmParameterSpec getParamSpec(String sigName,
100
100
// AlgorithmParameters.getAlgorithm() may returns oid if it's
101
101
// created during DER decoding. Convert to use the standard name
102
102
// before passing it to RSAUtil
103
- if (params .getAlgorithm ().indexOf ("." ) != - 1 ) {
103
+ if (params .getAlgorithm ().contains ("." )) {
104
104
try {
105
105
params = createAlgorithmParameters (sigName ,
106
106
params .getEncoded ());
@@ -109,9 +109,9 @@ public static AlgorithmParameterSpec getParamSpec(String sigName,
109
109
}
110
110
}
111
111
112
- if (sigName .indexOf ("RSA" ) != - 1 ) {
112
+ if (sigName .contains ("RSA" )) {
113
113
paramSpec = RSAUtil .getParamSpec (params );
114
- } else if (sigName .indexOf ("ECDSA" ) != - 1 ) {
114
+ } else if (sigName .contains ("ECDSA" )) {
115
115
try {
116
116
paramSpec = params .getParameterSpec (ECParameterSpec .class );
117
117
} catch (Exception e ) {
@@ -141,11 +141,11 @@ public static AlgorithmParameterSpec getParamSpec(String sigName,
141
141
142
142
if (paramBytes != null ) {
143
143
sigName = checkName (sigName ).toUpperCase (Locale .ENGLISH );
144
- if (sigName .indexOf ("RSA" ) != - 1 ) {
144
+ if (sigName .contains ("RSA" )) {
145
145
AlgorithmParameters params =
146
146
createAlgorithmParameters (sigName , paramBytes );
147
147
paramSpec = RSAUtil .getParamSpec (params );
148
- } else if (sigName .indexOf ("ECDSA" ) != - 1 ) {
148
+ } else if (sigName .contains ("ECDSA" )) {
149
149
try {
150
150
Provider p = Signature .getInstance (sigName ).getProvider ();
151
151
paramSpec = ECUtil .getECParameterSpec (p , paramBytes );
0 commit comments