mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
51 lines
1.7 KiB
Java
51 lines
1.7 KiB
Java
|
package androidx.media3.datasource;
|
||
|
|
||
|
import androidx.media3.common.util.Util;
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class AesCipherDataSink implements DataSink {
|
||
|
private AesFlushingCipher cipher;
|
||
|
private final byte[] scratch;
|
||
|
private final byte[] secretKey;
|
||
|
private final DataSink wrappedDataSink;
|
||
|
|
||
|
public AesCipherDataSink(byte[] bArr, DataSink dataSink) {
|
||
|
this(bArr, dataSink, null);
|
||
|
}
|
||
|
|
||
|
public AesCipherDataSink(byte[] bArr, DataSink dataSink, byte[] bArr2) {
|
||
|
this.wrappedDataSink = dataSink;
|
||
|
this.secretKey = bArr;
|
||
|
this.scratch = bArr2;
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSink
|
||
|
public void open(DataSpec dataSpec) throws IOException {
|
||
|
this.wrappedDataSink.open(dataSpec);
|
||
|
this.cipher = new AesFlushingCipher(1, this.secretKey, dataSpec.key, dataSpec.uriPositionOffset + dataSpec.position);
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSink
|
||
|
public void write(byte[] bArr, int i, int i2) throws IOException {
|
||
|
if (this.scratch == null) {
|
||
|
((AesFlushingCipher) Util.castNonNull(this.cipher)).updateInPlace(bArr, i, i2);
|
||
|
this.wrappedDataSink.write(bArr, i, i2);
|
||
|
return;
|
||
|
}
|
||
|
int i3 = 0;
|
||
|
while (i3 < i2) {
|
||
|
int min = Math.min(i2 - i3, this.scratch.length);
|
||
|
((AesFlushingCipher) Util.castNonNull(this.cipher)).update(bArr, i + i3, min, this.scratch, 0);
|
||
|
this.wrappedDataSink.write(this.scratch, 0, min);
|
||
|
i3 += min;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSink
|
||
|
public void close() throws IOException {
|
||
|
this.cipher = null;
|
||
|
this.wrappedDataSink.close();
|
||
|
}
|
||
|
}
|