what-the-bank/sources/org/bouncycastle/crypto/BufferedAsymmetricBlockCiph...

83 lines
2.2 KiB
Java

package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public class BufferedAsymmetricBlockCipher {
protected byte[] buf;
protected int bufOff;
private final AsymmetricBlockCipher cipher;
public void reset() {
if (this.buf != null) {
int i = 0;
while (true) {
byte[] bArr = this.buf;
if (i >= bArr.length) {
break;
}
bArr[i] = 0;
i++;
}
}
this.bufOff = 0;
}
public void processBytes(byte[] bArr, int i, int i2) {
if (i2 == 0) {
return;
}
if (i2 < 0) {
throw new IllegalArgumentException("Can't have a negative input length!");
}
int i3 = this.bufOff;
byte[] bArr2 = this.buf;
if (i3 + i2 > bArr2.length) {
throw new DataLengthException("attempt to process message too long for cipher");
}
System.arraycopy(bArr, i, bArr2, i3, i2);
this.bufOff += i2;
}
public void processByte(byte b) {
int i = this.bufOff;
byte[] bArr = this.buf;
if (i >= bArr.length) {
throw new DataLengthException("attempt to process message too long for cipher");
}
this.bufOff = i + 1;
bArr[i] = b;
}
public void init(boolean z, CipherParameters cipherParameters) {
reset();
this.cipher.init(z, cipherParameters);
this.buf = new byte[this.cipher.getInputBlockSize() + (z ? 1 : 0)];
this.bufOff = 0;
}
public AsymmetricBlockCipher getUnderlyingCipher() {
return this.cipher;
}
public int getOutputBlockSize() {
return this.cipher.getOutputBlockSize();
}
public int getInputBlockSize() {
return this.cipher.getInputBlockSize();
}
public int getBufferPosition() {
return this.bufOff;
}
public byte[] doFinal() throws InvalidCipherTextException {
byte[] processBlock = this.cipher.processBlock(this.buf, 0, this.bufOff);
reset();
return processBlock;
}
public BufferedAsymmetricBlockCipher(AsymmetricBlockCipher asymmetricBlockCipher) {
this.cipher = asymmetricBlockCipher;
}
}