what-the-bank/sources/org/bouncycastle/crypto/modes/NISTCTSBlockCipher.java

168 lines
7.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.modes;
import org.bouncycastle.crypto.BlockCipher;
import org.bouncycastle.crypto.BufferedBlockCipher;
import org.bouncycastle.crypto.DataLengthException;
import org.bouncycastle.crypto.InvalidCipherTextException;
/* loaded from: classes6.dex */
public class NISTCTSBlockCipher extends BufferedBlockCipher {
public static final int CS1 = 1;
public static final int CS2 = 2;
public static final int CS3 = 3;
private final int blockSize;
private final int type;
@Override // org.bouncycastle.crypto.BufferedBlockCipher
public int processBytes(byte[] bArr, int i, int i2, byte[] bArr2, int i3) throws DataLengthException, IllegalStateException {
if (i2 < 0) {
throw new IllegalArgumentException("Can't have a negative input length!");
}
int blockSize = getBlockSize();
int updateOutputSize = getUpdateOutputSize(i2);
if (updateOutputSize > 0 && updateOutputSize + i3 > bArr2.length) {
throw new DataLengthException("output buffer too short");
}
int length = this.buf.length - this.bufOff;
int i4 = 0;
if (i2 > length) {
System.arraycopy(bArr, i, this.buf, this.bufOff, length);
int processBlock = this.cipher.processBlock(this.buf, 0, bArr2, i3);
byte[] bArr3 = this.buf;
System.arraycopy(bArr3, blockSize, bArr3, 0, blockSize);
this.bufOff = blockSize;
i2 -= length;
i += length;
while (i2 > blockSize) {
System.arraycopy(bArr, i, this.buf, this.bufOff, blockSize);
processBlock += this.cipher.processBlock(this.buf, 0, bArr2, i3 + processBlock);
byte[] bArr4 = this.buf;
System.arraycopy(bArr4, blockSize, bArr4, 0, blockSize);
i2 -= blockSize;
i += blockSize;
}
i4 = processBlock;
}
System.arraycopy(bArr, i, this.buf, this.bufOff, i2);
this.bufOff += i2;
return i4;
}
@Override // org.bouncycastle.crypto.BufferedBlockCipher
public int processByte(byte b, byte[] bArr, int i) throws DataLengthException, IllegalStateException {
int i2 = 0;
if (this.bufOff == this.buf.length) {
int processBlock = this.cipher.processBlock(this.buf, 0, bArr, i);
System.arraycopy(this.buf, this.blockSize, this.buf, 0, this.blockSize);
this.bufOff = this.blockSize;
i2 = processBlock;
}
byte[] bArr2 = this.buf;
int i3 = this.bufOff;
this.bufOff = i3 + 1;
bArr2[i3] = b;
return i2;
}
@Override // org.bouncycastle.crypto.BufferedBlockCipher
public int getUpdateOutputSize(int i) {
int i2 = i + this.bufOff;
int length = i2 % this.buf.length;
return length == 0 ? i2 - this.buf.length : i2 - length;
}
@Override // org.bouncycastle.crypto.BufferedBlockCipher
public int getOutputSize(int i) {
return i + this.bufOff;
}
@Override // org.bouncycastle.crypto.BufferedBlockCipher
public int doFinal(byte[] bArr, int i) throws DataLengthException, IllegalStateException, InvalidCipherTextException {
if (this.bufOff + i > bArr.length) {
throw new DataLengthException("output buffer to small in doFinal");
}
int blockSize = this.cipher.getBlockSize();
int i2 = this.bufOff - blockSize;
byte[] bArr2 = new byte[blockSize];
if (this.forEncryption) {
if (this.bufOff < blockSize) {
throw new DataLengthException("need at least one block of input for NISTCTS");
}
if (this.bufOff > blockSize) {
byte[] bArr3 = new byte[blockSize];
int i3 = this.type;
if (i3 == 2 || i3 == 3) {
this.cipher.processBlock(this.buf, 0, bArr2, 0);
System.arraycopy(this.buf, blockSize, bArr3, 0, i2);
this.cipher.processBlock(bArr3, 0, bArr3, 0);
if (this.type == 2 && i2 == blockSize) {
System.arraycopy(bArr2, 0, bArr, i, blockSize);
System.arraycopy(bArr3, 0, bArr, i + blockSize, i2);
} else {
System.arraycopy(bArr3, 0, bArr, i, blockSize);
System.arraycopy(bArr2, 0, bArr, i + blockSize, i2);
}
} else {
System.arraycopy(this.buf, 0, bArr2, 0, blockSize);
this.cipher.processBlock(bArr2, 0, bArr2, 0);
System.arraycopy(bArr2, 0, bArr, i, i2);
System.arraycopy(this.buf, this.bufOff - i2, bArr3, 0, i2);
this.cipher.processBlock(bArr3, 0, bArr3, 0);
System.arraycopy(bArr3, 0, bArr, i + i2, blockSize);
}
} else {
this.cipher.processBlock(this.buf, 0, bArr2, 0);
System.arraycopy(bArr2, 0, bArr, i, blockSize);
}
} else {
if (this.bufOff < blockSize) {
throw new DataLengthException("need at least one block of input for CTS");
}
byte[] bArr4 = new byte[blockSize];
if (this.bufOff > blockSize) {
int i4 = this.type;
if (i4 == 3 || (i4 == 2 && (this.buf.length - this.bufOff) % blockSize != 0)) {
if (this.cipher instanceof CBCBlockCipher) {
((CBCBlockCipher) this.cipher).getUnderlyingCipher().processBlock(this.buf, 0, bArr2, 0);
} else {
this.cipher.processBlock(this.buf, 0, bArr2, 0);
}
for (int i5 = blockSize; i5 != this.bufOff; i5++) {
int i6 = i5 - blockSize;
bArr4[i6] = (byte) (bArr2[i6] ^ this.buf[i5]);
}
System.arraycopy(this.buf, blockSize, bArr2, 0, i2);
this.cipher.processBlock(bArr2, 0, bArr, i);
} else {
((CBCBlockCipher) this.cipher).getUnderlyingCipher().processBlock(this.buf, this.bufOff - blockSize, bArr4, 0);
System.arraycopy(this.buf, 0, bArr2, 0, blockSize);
if (i2 != blockSize) {
System.arraycopy(bArr4, i2, bArr2, i2, blockSize - i2);
}
this.cipher.processBlock(bArr2, 0, bArr2, 0);
System.arraycopy(bArr2, 0, bArr, i, blockSize);
for (int i7 = 0; i7 != i2; i7++) {
bArr4[i7] = (byte) (bArr4[i7] ^ this.buf[i7]);
}
}
System.arraycopy(bArr4, 0, bArr, i + blockSize, i2);
} else {
this.cipher.processBlock(this.buf, 0, bArr2, 0);
System.arraycopy(bArr2, 0, bArr, i, blockSize);
}
}
int i8 = this.bufOff;
reset();
return i8;
}
public NISTCTSBlockCipher(int i, BlockCipher blockCipher) {
this.type = i;
this.cipher = new CBCBlockCipher(blockCipher);
int blockSize = blockCipher.getBlockSize();
this.blockSize = blockSize;
this.buf = new byte[blockSize << 1];
this.bufOff = 0;
}
}