what-the-bank/sources/org/bouncycastle/crypto/params/ParametersWithSBox.java

23 lines
558 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.params;
import org.bouncycastle.crypto.CipherParameters;
/* loaded from: classes6.dex */
public class ParametersWithSBox implements CipherParameters {
private CipherParameters parameters;
private byte[] sBox;
public byte[] getSBox() {
return this.sBox;
}
public CipherParameters getParameters() {
return this.parameters;
}
public ParametersWithSBox(CipherParameters cipherParameters, byte[] bArr) {
this.parameters = cipherParameters;
this.sBox = bArr;
}
}