23 lines
558 B
Java
23 lines
558 B
Java
|
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;
|
||
|
}
|
||
|
}
|