ConnectionSpec.java
9.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package com.squareup.okhttp;
import com.squareup.okhttp.internal.Util;
import java.util.Arrays;
import java.util.List;
import javax.net.ssl.SSLSocket;
public final class ConnectionSpec
{
private static final CipherSuite[] APPROVED_CIPHER_SUITES = { CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, CipherSuite.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, CipherSuite.TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, CipherSuite.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, CipherSuite.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, CipherSuite.TLS_DHE_RSA_WITH_AES_128_CBC_SHA, CipherSuite.TLS_DHE_RSA_WITH_AES_256_CBC_SHA, CipherSuite.TLS_RSA_WITH_AES_128_GCM_SHA256, CipherSuite.TLS_RSA_WITH_AES_128_CBC_SHA, CipherSuite.TLS_RSA_WITH_AES_256_CBC_SHA, CipherSuite.TLS_RSA_WITH_3DES_EDE_CBC_SHA };
public static final ConnectionSpec CLEARTEXT = new Builder(false).build();
public static final ConnectionSpec COMPATIBLE_TLS;
public static final ConnectionSpec MODERN_TLS = new Builder(true).cipherSuites(APPROVED_CIPHER_SUITES).tlsVersions(new TlsVersion[] { TlsVersion.TLS_1_2, TlsVersion.TLS_1_1, TlsVersion.TLS_1_0 }).supportsTlsExtensions(true).build();
private final String[] cipherSuites;
private final boolean supportsTlsExtensions;
private final boolean tls;
private final String[] tlsVersions;
static
{
COMPATIBLE_TLS = new Builder(MODERN_TLS).tlsVersions(new TlsVersion[] { TlsVersion.TLS_1_0 }).supportsTlsExtensions(true).build();
}
private ConnectionSpec(Builder paramBuilder)
{
this.tls = paramBuilder.tls;
this.cipherSuites = paramBuilder.cipherSuites;
this.tlsVersions = paramBuilder.tlsVersions;
this.supportsTlsExtensions = paramBuilder.supportsTlsExtensions;
}
private static boolean nonEmptyIntersection(String[] paramArrayOfString1, String[] paramArrayOfString2)
{
if ((paramArrayOfString1 == null) || (paramArrayOfString2 == null) || (paramArrayOfString1.length == 0) || (paramArrayOfString2.length == 0)) {}
for (;;)
{
return false;
int j = paramArrayOfString1.length;
int i = 0;
while (i < j)
{
if (Util.contains(paramArrayOfString2, paramArrayOfString1[i])) {
return true;
}
i += 1;
}
}
}
private ConnectionSpec supportedSpec(SSLSocket paramSSLSocket, boolean paramBoolean)
{
String[] arrayOfString1;
if (this.cipherSuites != null)
{
arrayOfString1 = (String[])Util.intersect(String.class, this.cipherSuites, paramSSLSocket.getEnabledCipherSuites());
if (this.tlsVersions == null) {
break label109;
}
}
label109:
for (String[] arrayOfString2 = (String[])Util.intersect(String.class, this.tlsVersions, paramSSLSocket.getEnabledProtocols());; arrayOfString2 = paramSSLSocket.getEnabledProtocols())
{
String[] arrayOfString3 = arrayOfString1;
if (paramBoolean)
{
arrayOfString3 = arrayOfString1;
if (Util.contains(paramSSLSocket.getSupportedCipherSuites(), "TLS_FALLBACK_SCSV")) {
arrayOfString3 = Util.concat(arrayOfString1, "TLS_FALLBACK_SCSV");
}
}
return new Builder(this).cipherSuites(arrayOfString3).tlsVersions(arrayOfString2).build();
arrayOfString1 = paramSSLSocket.getEnabledCipherSuites();
break;
}
}
final void apply(SSLSocket paramSSLSocket, boolean paramBoolean)
{
ConnectionSpec localConnectionSpec = supportedSpec(paramSSLSocket, paramBoolean);
if (localConnectionSpec.tlsVersions != null) {
paramSSLSocket.setEnabledProtocols(localConnectionSpec.tlsVersions);
}
if (localConnectionSpec.cipherSuites != null) {
paramSSLSocket.setEnabledCipherSuites(localConnectionSpec.cipherSuites);
}
}
public final List<CipherSuite> cipherSuites()
{
if (this.cipherSuites == null) {
return null;
}
CipherSuite[] arrayOfCipherSuite = new CipherSuite[this.cipherSuites.length];
int i = 0;
while (i < this.cipherSuites.length)
{
arrayOfCipherSuite[i] = CipherSuite.forJavaName(this.cipherSuites[i]);
i += 1;
}
return Util.immutableList(arrayOfCipherSuite);
}
public final boolean equals(Object paramObject)
{
if (!(paramObject instanceof ConnectionSpec)) {}
do
{
return false;
if (paramObject == this) {
return true;
}
paramObject = (ConnectionSpec)paramObject;
} while ((this.tls != ((ConnectionSpec)paramObject).tls) || ((this.tls) && ((!Arrays.equals(this.cipherSuites, ((ConnectionSpec)paramObject).cipherSuites)) || (!Arrays.equals(this.tlsVersions, ((ConnectionSpec)paramObject).tlsVersions)) || (this.supportsTlsExtensions != ((ConnectionSpec)paramObject).supportsTlsExtensions))));
return true;
}
public final int hashCode()
{
int i = 17;
int j;
int k;
if (this.tls)
{
j = Arrays.hashCode(this.cipherSuites);
k = Arrays.hashCode(this.tlsVersions);
if (!this.supportsTlsExtensions) {
break label53;
}
}
label53:
for (i = 0;; i = 1)
{
i += ((j + 527) * 31 + k) * 31;
return i;
}
}
public final boolean isCompatible(SSLSocket paramSSLSocket)
{
if (!this.tls) {}
while (((this.tlsVersions != null) && (!nonEmptyIntersection(this.tlsVersions, paramSSLSocket.getEnabledProtocols()))) || ((this.cipherSuites != null) && (!nonEmptyIntersection(this.cipherSuites, paramSSLSocket.getEnabledCipherSuites())))) {
return false;
}
return true;
}
public final boolean isTls()
{
return this.tls;
}
public final boolean supportsTlsExtensions()
{
return this.supportsTlsExtensions;
}
public final List<TlsVersion> tlsVersions()
{
if (this.tlsVersions == null) {
return null;
}
TlsVersion[] arrayOfTlsVersion = new TlsVersion[this.tlsVersions.length];
int i = 0;
while (i < this.tlsVersions.length)
{
arrayOfTlsVersion[i] = TlsVersion.forJavaName(this.tlsVersions[i]);
i += 1;
}
return Util.immutableList(arrayOfTlsVersion);
}
public final String toString()
{
if (!this.tls) {
return "ConnectionSpec()";
}
String str1;
if (this.cipherSuites != null)
{
str1 = cipherSuites().toString();
if (this.tlsVersions == null) {
break label90;
}
}
label90:
for (String str2 = tlsVersions().toString();; str2 = "[all enabled]")
{
return "ConnectionSpec(cipherSuites=" + str1 + ", tlsVersions=" + str2 + ", supportsTlsExtensions=" + this.supportsTlsExtensions + ")";
str1 = "[all enabled]";
break;
}
}
public static final class Builder
{
private String[] cipherSuites;
private boolean supportsTlsExtensions;
private boolean tls;
private String[] tlsVersions;
public Builder(ConnectionSpec paramConnectionSpec)
{
this.tls = paramConnectionSpec.tls;
this.cipherSuites = paramConnectionSpec.cipherSuites;
this.tlsVersions = paramConnectionSpec.tlsVersions;
this.supportsTlsExtensions = paramConnectionSpec.supportsTlsExtensions;
}
Builder(boolean paramBoolean)
{
this.tls = paramBoolean;
}
public final Builder allEnabledCipherSuites()
{
if (!this.tls) {
throw new IllegalStateException("no cipher suites for cleartext connections");
}
this.cipherSuites = null;
return this;
}
public final Builder allEnabledTlsVersions()
{
if (!this.tls) {
throw new IllegalStateException("no TLS versions for cleartext connections");
}
this.tlsVersions = null;
return this;
}
public final ConnectionSpec build()
{
return new ConnectionSpec(this, null);
}
public final Builder cipherSuites(CipherSuite... paramVarArgs)
{
if (!this.tls) {
throw new IllegalStateException("no cipher suites for cleartext connections");
}
String[] arrayOfString = new String[paramVarArgs.length];
int i = 0;
while (i < paramVarArgs.length)
{
arrayOfString[i] = paramVarArgs[i].javaName;
i += 1;
}
return cipherSuites(arrayOfString);
}
public final Builder cipherSuites(String... paramVarArgs)
{
if (!this.tls) {
throw new IllegalStateException("no cipher suites for cleartext connections");
}
if (paramVarArgs.length == 0) {
throw new IllegalArgumentException("At least one cipher suite is required");
}
this.cipherSuites = ((String[])paramVarArgs.clone());
return this;
}
public final Builder supportsTlsExtensions(boolean paramBoolean)
{
if (!this.tls) {
throw new IllegalStateException("no TLS extensions for cleartext connections");
}
this.supportsTlsExtensions = paramBoolean;
return this;
}
public final Builder tlsVersions(TlsVersion... paramVarArgs)
{
if (!this.tls) {
throw new IllegalStateException("no TLS versions for cleartext connections");
}
String[] arrayOfString = new String[paramVarArgs.length];
int i = 0;
while (i < paramVarArgs.length)
{
arrayOfString[i] = paramVarArgs[i].javaName;
i += 1;
}
return tlsVersions(arrayOfString);
}
public final Builder tlsVersions(String... paramVarArgs)
{
if (!this.tls) {
throw new IllegalStateException("no TLS versions for cleartext connections");
}
if (paramVarArgs.length == 0) {
throw new IllegalArgumentException("At least one TLS version is required");
}
this.tlsVersions = ((String[])paramVarArgs.clone());
return this;
}
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/com/squareup/okhttp/ConnectionSpec.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/