Rabbit-R1/switch port/java/sources/okio/HashingSource.java
2024-05-21 17:08:36 -04:00

198 lines
9.5 KiB
Java

package okio;
import io.sentry.protocol.TransactionInfo;
import java.io.IOException;
import java.security.InvalidKeyException;
import java.security.MessageDigest;
import javax.crypto.Mac;
import javax.crypto.spec.SecretKeySpec;
import kotlin.Deprecated;
import kotlin.DeprecationLevel;
import kotlin.Metadata;
import kotlin.ReplaceWith;
import kotlin.Unit;
import kotlin.jvm.JvmStatic;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: HashingSource.kt */
@Metadata(bv = {1, 0, 3}, d1 = {"\u0000<\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\t\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u0000 \u00162\u00020\u0001:\u0001\u0016B\u0017\b\u0010\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0002\u0010\u0006B\u001f\b\u0010\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u0012\u0006\u0010\u0007\u001a\u00020\b\u0012\u0006\u0010\u0004\u001a\u00020\u0005¢\u0006\u0002\u0010\tJ\r\u0010\n\u001a\u00020\bH\u0007¢\u0006\u0002\b\u0010J\u0018\u0010\u0011\u001a\u00020\u00122\u0006\u0010\u0013\u001a\u00020\u00142\u0006\u0010\u0015\u001a\u00020\u0012H\u0016R\u0011\u0010\n\u001a\u00020\b8G¢\u0006\u0006\u001a\u0004\b\n\u0010\u000bR\u0010\u0010\f\u001a\u0004\u0018\u00010\rX\u0082\u0004¢\u0006\u0002\n\u0000R\u0010\u0010\u000e\u001a\u0004\u0018\u00010\u000fX\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\u0017"}, d2 = {"Lokio/HashingSource;", "Lokio/ForwardingSource;", TransactionInfo.JsonKeys.SOURCE, "Lokio/Source;", "algorithm", "", "(Lokio/Source;Ljava/lang/String;)V", "key", "Lokio/ByteString;", "(Lokio/Source;Lokio/ByteString;Ljava/lang/String;)V", "hash", "()Lokio/ByteString;", "mac", "Ljavax/crypto/Mac;", "messageDigest", "Ljava/security/MessageDigest;", "-deprecated_hash", "read", "", "sink", "Lokio/Buffer;", "byteCount", "Companion", "okio"}, k = 1, mv = {1, 4, 0})
/* loaded from: classes3.dex */
public final class HashingSource extends ForwardingSource {
/* renamed from: Companion, reason: from kotlin metadata */
public static final Companion INSTANCE = new Companion(null);
private final Mac mac;
private final MessageDigest messageDigest;
@JvmStatic
public static final HashingSource hmacSha1(Source source, ByteString byteString) {
return INSTANCE.hmacSha1(source, byteString);
}
@JvmStatic
public static final HashingSource hmacSha256(Source source, ByteString byteString) {
return INSTANCE.hmacSha256(source, byteString);
}
@JvmStatic
public static final HashingSource hmacSha512(Source source, ByteString byteString) {
return INSTANCE.hmacSha512(source, byteString);
}
@JvmStatic
public static final HashingSource md5(Source source) {
return INSTANCE.md5(source);
}
@JvmStatic
public static final HashingSource sha1(Source source) {
return INSTANCE.sha1(source);
}
@JvmStatic
public static final HashingSource sha256(Source source) {
return INSTANCE.sha256(source);
}
@JvmStatic
public static final HashingSource sha512(Source source) {
return INSTANCE.sha512(source);
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public HashingSource(Source source, String algorithm) {
super(source);
Intrinsics.checkNotNullParameter(source, "source");
Intrinsics.checkNotNullParameter(algorithm, "algorithm");
this.messageDigest = MessageDigest.getInstance(algorithm);
this.mac = null;
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public HashingSource(Source source, ByteString key, String algorithm) {
super(source);
Intrinsics.checkNotNullParameter(source, "source");
Intrinsics.checkNotNullParameter(key, "key");
Intrinsics.checkNotNullParameter(algorithm, "algorithm");
try {
Mac mac = Mac.getInstance(algorithm);
mac.init(new SecretKeySpec(key.toByteArray(), algorithm));
Unit unit = Unit.INSTANCE;
this.mac = mac;
this.messageDigest = null;
} catch (InvalidKeyException e) {
throw new IllegalArgumentException(e);
}
}
@Override // okio.ForwardingSource, okio.Source
public long read(Buffer sink, long byteCount) throws IOException {
Intrinsics.checkNotNullParameter(sink, "sink");
long read = super.read(sink, byteCount);
if (read != -1) {
long size = sink.size() - read;
long size2 = sink.size();
Segment segment = sink.head;
Intrinsics.checkNotNull(segment);
while (size2 > size) {
segment = segment.prev;
Intrinsics.checkNotNull(segment);
size2 -= segment.limit - segment.pos;
}
while (size2 < sink.size()) {
int i = (int) ((segment.pos + size) - size2);
MessageDigest messageDigest = this.messageDigest;
if (messageDigest != null) {
messageDigest.update(segment.data, i, segment.limit - i);
} else {
Mac mac = this.mac;
Intrinsics.checkNotNull(mac);
mac.update(segment.data, i, segment.limit - i);
}
size2 += segment.limit - segment.pos;
segment = segment.next;
Intrinsics.checkNotNull(segment);
size = size2;
}
}
return read;
}
public final ByteString hash() {
byte[] result;
MessageDigest messageDigest = this.messageDigest;
if (messageDigest != null) {
result = messageDigest.digest();
} else {
Mac mac = this.mac;
Intrinsics.checkNotNull(mac);
result = mac.doFinal();
}
Intrinsics.checkNotNullExpressionValue(result, "result");
return new ByteString(result);
}
@Deprecated(level = DeprecationLevel.ERROR, message = "moved to val", replaceWith = @ReplaceWith(expression = "hash", imports = {}))
/* renamed from: -deprecated_hash, reason: not valid java name */
public final ByteString m7422deprecated_hash() {
return hash();
}
/* compiled from: HashingSource.kt */
@Metadata(bv = {1, 0, 3}, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0007\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\u0018\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0007J\u0018\u0010\t\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0007J\u0018\u0010\n\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00062\u0006\u0010\u0007\u001a\u00020\bH\u0007J\u0010\u0010\u000b\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0007J\u0010\u0010\f\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0007J\u0010\u0010\r\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0007J\u0010\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0007¨\u0006\u000f"}, d2 = {"Lokio/HashingSource$Companion;", "", "()V", "hmacSha1", "Lokio/HashingSource;", TransactionInfo.JsonKeys.SOURCE, "Lokio/Source;", "key", "Lokio/ByteString;", "hmacSha256", "hmacSha512", "md5", "sha1", "sha256", "sha512", "okio"}, k = 1, mv = {1, 4, 0})
/* loaded from: classes3.dex */
public static final class Companion {
private Companion() {
}
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
@JvmStatic
public final HashingSource md5(Source source) {
Intrinsics.checkNotNullParameter(source, "source");
return new HashingSource(source, "MD5");
}
@JvmStatic
public final HashingSource sha1(Source source) {
Intrinsics.checkNotNullParameter(source, "source");
return new HashingSource(source, "SHA-1");
}
@JvmStatic
public final HashingSource sha256(Source source) {
Intrinsics.checkNotNullParameter(source, "source");
return new HashingSource(source, "SHA-256");
}
@JvmStatic
public final HashingSource sha512(Source source) {
Intrinsics.checkNotNullParameter(source, "source");
return new HashingSource(source, "SHA-512");
}
@JvmStatic
public final HashingSource hmacSha1(Source source, ByteString key) {
Intrinsics.checkNotNullParameter(source, "source");
Intrinsics.checkNotNullParameter(key, "key");
return new HashingSource(source, key, "HmacSHA1");
}
@JvmStatic
public final HashingSource hmacSha256(Source source, ByteString key) {
Intrinsics.checkNotNullParameter(source, "source");
Intrinsics.checkNotNullParameter(key, "key");
return new HashingSource(source, key, "HmacSHA256");
}
@JvmStatic
public final HashingSource hmacSha512(Source source, ByteString key) {
Intrinsics.checkNotNullParameter(source, "source");
Intrinsics.checkNotNullParameter(key, "key");
return new HashingSource(source, key, "HmacSHA512");
}
}
}