85 lines
3.1 KiB
Java
85 lines
3.1 KiB
Java
|
package org.bouncycastle.crypto.tls;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import org.bouncycastle.crypto.Digest;
|
||
|
import org.bouncycastle.util.Arrays;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class TlsNullCipher implements TlsCipher {
|
||
|
protected TlsContext context;
|
||
|
protected TlsMac readMac;
|
||
|
protected TlsMac writeMac;
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.tls.TlsCipher
|
||
|
public int getPlaintextLimit(int i) {
|
||
|
TlsMac tlsMac = this.writeMac;
|
||
|
return tlsMac != null ? i - tlsMac.getSize() : i;
|
||
|
}
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.tls.TlsCipher
|
||
|
public byte[] encodePlaintext(long j, short s, byte[] bArr, int i, int i2) throws IOException {
|
||
|
TlsMac tlsMac = this.writeMac;
|
||
|
if (tlsMac == null) {
|
||
|
return Arrays.copyOfRange(bArr, i, i2 + i);
|
||
|
}
|
||
|
byte[] calculateMac = tlsMac.calculateMac(j, s, bArr, i, i2);
|
||
|
byte[] bArr2 = new byte[calculateMac.length + i2];
|
||
|
System.arraycopy(bArr, i, bArr2, 0, i2);
|
||
|
System.arraycopy(calculateMac, 0, bArr2, i2, calculateMac.length);
|
||
|
return bArr2;
|
||
|
}
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.tls.TlsCipher
|
||
|
public byte[] decodeCiphertext(long j, short s, byte[] bArr, int i, int i2) throws IOException {
|
||
|
TlsMac tlsMac = this.readMac;
|
||
|
if (tlsMac == null) {
|
||
|
return Arrays.copyOfRange(bArr, i, i2 + i);
|
||
|
}
|
||
|
int size = tlsMac.getSize();
|
||
|
if (i2 < size) {
|
||
|
throw new TlsFatalAlert((short) 50);
|
||
|
}
|
||
|
int i3 = i2 - size;
|
||
|
int i4 = i + i3;
|
||
|
if (Arrays.constantTimeAreEqual(Arrays.copyOfRange(bArr, i4, i2 + i), this.readMac.calculateMac(j, s, bArr, i, i3))) {
|
||
|
return Arrays.copyOfRange(bArr, i, i4);
|
||
|
}
|
||
|
throw new TlsFatalAlert((short) 20);
|
||
|
}
|
||
|
|
||
|
public TlsNullCipher(TlsContext tlsContext, Digest digest, Digest digest2) throws IOException {
|
||
|
TlsMac tlsMac;
|
||
|
TlsMac tlsMac2;
|
||
|
if ((digest == null) != (digest2 == null)) {
|
||
|
throw new TlsFatalAlert((short) 80);
|
||
|
}
|
||
|
this.context = tlsContext;
|
||
|
if (digest != null) {
|
||
|
int digestSize = digest.getDigestSize() + digest2.getDigestSize();
|
||
|
byte[] calculateKeyBlock = TlsUtils.calculateKeyBlock(tlsContext, digestSize);
|
||
|
tlsMac = new TlsMac(tlsContext, digest, calculateKeyBlock, 0, digest.getDigestSize());
|
||
|
int digestSize2 = digest.getDigestSize();
|
||
|
tlsMac2 = new TlsMac(tlsContext, digest2, calculateKeyBlock, digestSize2, digest2.getDigestSize());
|
||
|
if (digestSize2 + digest2.getDigestSize() != digestSize) {
|
||
|
throw new TlsFatalAlert((short) 80);
|
||
|
}
|
||
|
} else {
|
||
|
tlsMac = null;
|
||
|
tlsMac2 = null;
|
||
|
}
|
||
|
if (tlsContext.isServer()) {
|
||
|
this.writeMac = tlsMac2;
|
||
|
this.readMac = tlsMac;
|
||
|
} else {
|
||
|
this.writeMac = tlsMac;
|
||
|
this.readMac = tlsMac2;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public TlsNullCipher(TlsContext tlsContext) {
|
||
|
this.context = tlsContext;
|
||
|
this.writeMac = null;
|
||
|
this.readMac = null;
|
||
|
}
|
||
|
}
|