219 lines
7.7 KiB
Java
219 lines
7.7 KiB
Java
|
package org.bouncycastle.crypto.modes;
|
||
|
|
||
|
import org.bouncycastle.crypto.BlockCipher;
|
||
|
import org.bouncycastle.crypto.CipherParameters;
|
||
|
import org.bouncycastle.crypto.DataLengthException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class OpenPGPCFBBlockCipher implements BlockCipher {
|
||
|
private byte[] FR;
|
||
|
private byte[] FRE;
|
||
|
private byte[] IV;
|
||
|
private int blockSize;
|
||
|
private BlockCipher cipher;
|
||
|
private int count;
|
||
|
private boolean forEncryption;
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.BlockCipher
|
||
|
public void reset() {
|
||
|
this.count = 0;
|
||
|
byte[] bArr = this.IV;
|
||
|
byte[] bArr2 = this.FR;
|
||
|
System.arraycopy(bArr, 0, bArr2, 0, bArr2.length);
|
||
|
this.cipher.reset();
|
||
|
}
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.BlockCipher
|
||
|
public int processBlock(byte[] bArr, int i, byte[] bArr2, int i2) throws DataLengthException, IllegalStateException {
|
||
|
return this.forEncryption ? encryptBlock(bArr, i, bArr2, i2) : decryptBlock(bArr, i, bArr2, i2);
|
||
|
}
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.BlockCipher
|
||
|
public void init(boolean z, CipherParameters cipherParameters) throws IllegalArgumentException {
|
||
|
this.forEncryption = z;
|
||
|
reset();
|
||
|
this.cipher.init(true, cipherParameters);
|
||
|
}
|
||
|
|
||
|
public BlockCipher getUnderlyingCipher() {
|
||
|
return this.cipher;
|
||
|
}
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.BlockCipher
|
||
|
public int getBlockSize() {
|
||
|
return this.cipher.getBlockSize();
|
||
|
}
|
||
|
|
||
|
@Override // org.bouncycastle.crypto.BlockCipher
|
||
|
public String getAlgorithmName() {
|
||
|
StringBuilder sb = new StringBuilder();
|
||
|
sb.append(this.cipher.getAlgorithmName());
|
||
|
sb.append("/OpenPGPCFB");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
private byte encryptByte(byte b, int i) {
|
||
|
return (byte) (b ^ this.FRE[i]);
|
||
|
}
|
||
|
|
||
|
private int encryptBlock(byte[] bArr, int i, byte[] bArr2, int i2) throws DataLengthException, IllegalStateException {
|
||
|
int i3;
|
||
|
int i4 = this.blockSize;
|
||
|
if (i + i4 > bArr.length) {
|
||
|
throw new DataLengthException("input buffer too short");
|
||
|
}
|
||
|
if (i2 + i4 > bArr2.length) {
|
||
|
throw new DataLengthException("output buffer too short");
|
||
|
}
|
||
|
int i5 = this.count;
|
||
|
int i6 = 2;
|
||
|
int i7 = 0;
|
||
|
if (i5 > i4) {
|
||
|
byte[] bArr3 = this.FR;
|
||
|
int i8 = i4 - 2;
|
||
|
byte encryptByte = encryptByte(bArr[i], i8);
|
||
|
bArr2[i2] = encryptByte;
|
||
|
bArr3[i8] = encryptByte;
|
||
|
byte[] bArr4 = this.FR;
|
||
|
int i9 = this.blockSize - 1;
|
||
|
byte encryptByte2 = encryptByte(bArr[i + 1], i9);
|
||
|
bArr2[i2 + 1] = encryptByte2;
|
||
|
bArr4[i9] = encryptByte2;
|
||
|
this.cipher.processBlock(this.FR, 0, this.FRE, 0);
|
||
|
while (i6 < this.blockSize) {
|
||
|
byte[] bArr5 = this.FR;
|
||
|
int i10 = i6 - 2;
|
||
|
byte encryptByte3 = encryptByte(bArr[i + i6], i10);
|
||
|
bArr2[i2 + i6] = encryptByte3;
|
||
|
bArr5[i10] = encryptByte3;
|
||
|
i6++;
|
||
|
}
|
||
|
} else {
|
||
|
if (i5 != 0) {
|
||
|
if (i5 == i4) {
|
||
|
this.cipher.processBlock(this.FR, 0, this.FRE, 0);
|
||
|
bArr2[i2] = encryptByte(bArr[i], 0);
|
||
|
bArr2[i2 + 1] = encryptByte(bArr[i + 1], 1);
|
||
|
byte[] bArr6 = this.FR;
|
||
|
System.arraycopy(bArr6, 2, bArr6, 0, this.blockSize - 2);
|
||
|
System.arraycopy(bArr2, i2, this.FR, this.blockSize - 2, 2);
|
||
|
this.cipher.processBlock(this.FR, 0, this.FRE, 0);
|
||
|
while (true) {
|
||
|
i3 = this.blockSize;
|
||
|
if (i6 >= i3) {
|
||
|
break;
|
||
|
}
|
||
|
byte[] bArr7 = this.FR;
|
||
|
int i11 = i6 - 2;
|
||
|
byte encryptByte4 = encryptByte(bArr[i + i6], i11);
|
||
|
bArr2[i2 + i6] = encryptByte4;
|
||
|
bArr7[i11] = encryptByte4;
|
||
|
i6++;
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
this.cipher.processBlock(this.FR, 0, this.FRE, 0);
|
||
|
while (true) {
|
||
|
i3 = this.blockSize;
|
||
|
if (i7 >= i3) {
|
||
|
break;
|
||
|
}
|
||
|
byte[] bArr8 = this.FR;
|
||
|
byte encryptByte5 = encryptByte(bArr[i + i7], i7);
|
||
|
bArr2[i2 + i7] = encryptByte5;
|
||
|
bArr8[i7] = encryptByte5;
|
||
|
i7++;
|
||
|
}
|
||
|
}
|
||
|
this.count += i3;
|
||
|
}
|
||
|
return this.blockSize;
|
||
|
}
|
||
|
|
||
|
private int decryptBlock(byte[] bArr, int i, byte[] bArr2, int i2) throws DataLengthException, IllegalStateException {
|
||
|
int i3;
|
||
|
int i4;
|
||
|
int i5;
|
||
|
int i6 = this.blockSize;
|
||
|
if (i + i6 > bArr.length) {
|
||
|
throw new DataLengthException("input buffer too short");
|
||
|
}
|
||
|
if (i2 + i6 > bArr2.length) {
|
||
|
throw new DataLengthException("output buffer too short");
|
||
|
}
|
||
|
int i7 = this.count;
|
||
|
int i8 = 2;
|
||
|
int i9 = 0;
|
||
|
if (i7 > i6) {
|
||
|
byte b = bArr[i];
|
||
|
int i10 = i6 - 2;
|
||
|
this.FR[i10] = b;
|
||
|
bArr2[i2] = encryptByte(b, i10);
|
||
|
byte b2 = bArr[i + 1];
|
||
|
byte[] bArr3 = this.FR;
|
||
|
int i11 = this.blockSize - 1;
|
||
|
bArr3[i11] = b2;
|
||
|
bArr2[i2 + 1] = encryptByte(b2, i11);
|
||
|
this.cipher.processBlock(this.FR, 0, this.FRE, 0);
|
||
|
while (i8 < this.blockSize) {
|
||
|
byte b3 = bArr[i + i8];
|
||
|
int i12 = i8 - 2;
|
||
|
this.FR[i12] = b3;
|
||
|
bArr2[i2 + i8] = encryptByte(b3, i12);
|
||
|
i8++;
|
||
|
}
|
||
|
} else {
|
||
|
if (i7 == 0) {
|
||
|
this.cipher.processBlock(this.FR, 0, this.FRE, 0);
|
||
|
while (true) {
|
||
|
i5 = this.blockSize;
|
||
|
if (i9 >= i5) {
|
||
|
break;
|
||
|
}
|
||
|
int i13 = i + i9;
|
||
|
this.FR[i9] = bArr[i13];
|
||
|
bArr2[i9] = encryptByte(bArr[i13], i9);
|
||
|
i9++;
|
||
|
}
|
||
|
i4 = this.count + i5;
|
||
|
} else if (i7 == i6) {
|
||
|
this.cipher.processBlock(this.FR, 0, this.FRE, 0);
|
||
|
byte b4 = bArr[i];
|
||
|
byte b5 = bArr[i + 1];
|
||
|
bArr2[i2] = encryptByte(b4, 0);
|
||
|
bArr2[i2 + 1] = encryptByte(b5, 1);
|
||
|
byte[] bArr4 = this.FR;
|
||
|
System.arraycopy(bArr4, 2, bArr4, 0, this.blockSize - 2);
|
||
|
byte[] bArr5 = this.FR;
|
||
|
int i14 = this.blockSize;
|
||
|
bArr5[i14 - 2] = b4;
|
||
|
bArr5[i14 - 1] = b5;
|
||
|
this.cipher.processBlock(bArr5, 0, this.FRE, 0);
|
||
|
while (true) {
|
||
|
i3 = this.blockSize;
|
||
|
if (i8 >= i3) {
|
||
|
break;
|
||
|
}
|
||
|
byte b6 = bArr[i + i8];
|
||
|
int i15 = i8 - 2;
|
||
|
this.FR[i15] = b6;
|
||
|
bArr2[i2 + i8] = encryptByte(b6, i15);
|
||
|
i8++;
|
||
|
}
|
||
|
i4 = this.count + i3;
|
||
|
}
|
||
|
this.count = i4;
|
||
|
}
|
||
|
return this.blockSize;
|
||
|
}
|
||
|
|
||
|
public OpenPGPCFBBlockCipher(BlockCipher blockCipher) {
|
||
|
this.cipher = blockCipher;
|
||
|
int blockSize = blockCipher.getBlockSize();
|
||
|
this.blockSize = blockSize;
|
||
|
this.IV = new byte[blockSize];
|
||
|
this.FR = new byte[blockSize];
|
||
|
this.FRE = new byte[blockSize];
|
||
|
}
|
||
|
}
|