ByteString.java
9.97 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
package okio;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.io.Serializable;
import java.lang.reflect.Field;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Arrays;
import tu;
import ua;
public class ByteString
implements Serializable, Comparable<ByteString>
{
public static final ByteString EMPTY = of(new byte[0]);
static final char[] a = { 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 97, 98, 99, 100, 101, 102 };
private static final long serialVersionUID = 1L;
final byte[] b;
protected transient int c;
transient String d;
protected ByteString(byte[] paramArrayOfByte)
{
this.b = paramArrayOfByte;
}
private static int a(char paramChar)
{
if ((paramChar >= '0') && (paramChar <= '9')) {
return paramChar - '0';
}
if ((paramChar >= 'a') && (paramChar <= 'f')) {
return paramChar - 'a' + 10;
}
if ((paramChar >= 'A') && (paramChar <= 'F')) {
return paramChar - 'A' + 10;
}
throw new IllegalArgumentException("Unexpected hex digit: " + paramChar);
}
private ByteString a(String paramString)
{
try
{
paramString = of(MessageDigest.getInstance(paramString).digest(this.b));
return paramString;
}
catch (NoSuchAlgorithmException paramString)
{
throw new AssertionError(paramString);
}
}
public static ByteString decodeBase64(String paramString)
{
if (paramString == null) {
throw new IllegalArgumentException("base64 == null");
}
paramString = tu.a(paramString);
if (paramString != null) {
return new ByteString(paramString);
}
return null;
}
public static ByteString decodeHex(String paramString)
{
if (paramString == null) {
throw new IllegalArgumentException("hex == null");
}
if (paramString.length() % 2 != 0) {
throw new IllegalArgumentException("Unexpected hex string: " + paramString);
}
byte[] arrayOfByte = new byte[paramString.length() / 2];
int i = 0;
while (i < arrayOfByte.length)
{
arrayOfByte[i] = ((byte)((a(paramString.charAt(i * 2)) << 4) + a(paramString.charAt(i * 2 + 1))));
i += 1;
}
return of(arrayOfByte);
}
public static ByteString encodeUtf8(String paramString)
{
if (paramString == null) {
throw new IllegalArgumentException("s == null");
}
ByteString localByteString = new ByteString(paramString.getBytes(ua.a));
localByteString.d = paramString;
return localByteString;
}
public static ByteString of(byte... paramVarArgs)
{
if (paramVarArgs == null) {
throw new IllegalArgumentException("data == null");
}
return new ByteString((byte[])paramVarArgs.clone());
}
public static ByteString of(byte[] paramArrayOfByte, int paramInt1, int paramInt2)
{
if (paramArrayOfByte == null) {
throw new IllegalArgumentException("data == null");
}
ua.a(paramArrayOfByte.length, paramInt1, paramInt2);
byte[] arrayOfByte = new byte[paramInt2];
System.arraycopy(paramArrayOfByte, paramInt1, arrayOfByte, 0, paramInt2);
return new ByteString(arrayOfByte);
}
public static ByteString read(InputStream paramInputStream, int paramInt)
throws IOException
{
if (paramInputStream == null) {
throw new IllegalArgumentException("in == null");
}
if (paramInt < 0) {
throw new IllegalArgumentException("byteCount < 0: " + paramInt);
}
byte[] arrayOfByte = new byte[paramInt];
int i = 0;
while (i < paramInt)
{
int j = paramInputStream.read(arrayOfByte, i, paramInt - i);
if (j == -1) {
throw new EOFException();
}
i += j;
}
return new ByteString(arrayOfByte);
}
private void readObject(ObjectInputStream paramObjectInputStream)
throws IOException
{
paramObjectInputStream = read(paramObjectInputStream, paramObjectInputStream.readInt());
try
{
Field localField = ByteString.class.getDeclaredField("b");
localField.setAccessible(true);
localField.set(this, paramObjectInputStream.b);
return;
}
catch (NoSuchFieldException paramObjectInputStream)
{
throw new AssertionError();
}
catch (IllegalAccessException paramObjectInputStream)
{
throw new AssertionError();
}
}
private void writeObject(ObjectOutputStream paramObjectOutputStream)
throws IOException
{
paramObjectOutputStream.writeInt(this.b.length);
paramObjectOutputStream.write(this.b);
}
protected void a(Buffer paramBuffer)
{
paramBuffer.write(this.b, 0, this.b.length);
}
public String base64()
{
return tu.a(this.b);
}
public String base64Url()
{
return tu.b(this.b);
}
public int compareTo(ByteString paramByteString)
{
int j = size();
int k = paramByteString.size();
int m = Math.min(j, k);
int i = 0;
if (i < m)
{
int n = getByte(i) & 0xFF;
int i1 = paramByteString.getByte(i) & 0xFF;
if (n != i1) {
if (n >= i1) {}
}
}
do
{
return -1;
return 1;
i += 1;
break;
if (j == k) {
return 0;
}
} while (j < k);
return 1;
}
public boolean equals(Object paramObject)
{
if (paramObject == this) {
return true;
}
return ((paramObject instanceof ByteString)) && (((ByteString)paramObject).size() == this.b.length) && (((ByteString)paramObject).rangeEquals(0, this.b, 0, this.b.length));
}
public byte getByte(int paramInt)
{
return this.b[paramInt];
}
public int hashCode()
{
int i = this.c;
if (i != 0) {
return i;
}
i = Arrays.hashCode(this.b);
this.c = i;
return i;
}
public String hex()
{
int i = 0;
char[] arrayOfChar = new char[this.b.length * 2];
byte[] arrayOfByte = this.b;
int k = arrayOfByte.length;
int j = 0;
while (i < k)
{
int m = arrayOfByte[i];
int n = j + 1;
arrayOfChar[j] = a[(m >> 4 & 0xF)];
j = n + 1;
arrayOfChar[n] = a[(m & 0xF)];
i += 1;
}
return new String(arrayOfChar);
}
public ByteString md5()
{
return a("MD5");
}
public boolean rangeEquals(int paramInt1, ByteString paramByteString, int paramInt2, int paramInt3)
{
return paramByteString.rangeEquals(paramInt2, this.b, paramInt1, paramInt3);
}
public boolean rangeEquals(int paramInt1, byte[] paramArrayOfByte, int paramInt2, int paramInt3)
{
return (paramInt1 <= this.b.length - paramInt3) && (paramInt2 <= paramArrayOfByte.length - paramInt3) && (ua.a(this.b, paramInt1, paramArrayOfByte, paramInt2, paramInt3));
}
public ByteString sha256()
{
return a("SHA-256");
}
public int size()
{
return this.b.length;
}
public ByteString substring(int paramInt)
{
return substring(paramInt, this.b.length);
}
public ByteString substring(int paramInt1, int paramInt2)
{
if (paramInt1 < 0) {
throw new IllegalArgumentException("beginIndex < 0");
}
if (paramInt2 > this.b.length) {
throw new IllegalArgumentException("endIndex > length(" + this.b.length + ")");
}
int i = paramInt2 - paramInt1;
if (i < 0) {
throw new IllegalArgumentException("endIndex < beginIndex");
}
if ((paramInt1 == 0) && (paramInt2 == this.b.length)) {
return this;
}
byte[] arrayOfByte = new byte[i];
System.arraycopy(this.b, paramInt1, arrayOfByte, 0, i);
return new ByteString(arrayOfByte);
}
public ByteString toAsciiLowercase()
{
int i = 0;
for (;;)
{
Object localObject = this;
if (i < this.b.length)
{
int j = this.b[i];
if ((j >= 65) && (j <= 90))
{
localObject = (byte[])this.b.clone();
localObject[i] = ((byte)(j + 32));
i += 1;
while (i < localObject.length)
{
j = localObject[i];
if ((j >= 65) && (j <= 90)) {
localObject[i] = ((byte)(j + 32));
}
i += 1;
}
localObject = new ByteString((byte[])localObject);
}
}
else
{
return (ByteString)localObject;
}
i += 1;
}
}
public ByteString toAsciiUppercase()
{
int i = 0;
for (;;)
{
Object localObject = this;
if (i < this.b.length)
{
int j = this.b[i];
if ((j >= 97) && (j <= 122))
{
localObject = (byte[])this.b.clone();
localObject[i] = ((byte)(j - 32));
i += 1;
while (i < localObject.length)
{
j = localObject[i];
if ((j >= 97) && (j <= 122)) {
localObject[i] = ((byte)(j - 32));
}
i += 1;
}
localObject = new ByteString((byte[])localObject);
}
}
else
{
return (ByteString)localObject;
}
i += 1;
}
}
public byte[] toByteArray()
{
return (byte[])this.b.clone();
}
public String toString()
{
if (this.b.length == 0) {
return "ByteString[size=0]";
}
if (this.b.length <= 16) {
return String.format("ByteString[size=%s data=%s]", new Object[] { Integer.valueOf(this.b.length), hex() });
}
return String.format("ByteString[size=%s md5=%s]", new Object[] { Integer.valueOf(this.b.length), md5().hex() });
}
public String utf8()
{
String str = this.d;
if (str != null) {
return str;
}
str = new String(this.b, ua.a);
this.d = str;
return str;
}
public void write(OutputStream paramOutputStream)
throws IOException
{
if (paramOutputStream == null) {
throw new IllegalArgumentException("out == null");
}
paramOutputStream.write(this.b);
}
}
/* Location: /home/merong/decompile/hackery-dex2jar.jar!/okio/ByteString.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/