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; } }