23 lines
470 B
Java
23 lines
470 B
Java
|
package org.bouncycastle.crypto.params;
|
||
|
|
||
|
import org.bouncycastle.crypto.DerivationParameters;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class KDFParameters implements DerivationParameters {
|
||
|
byte[] iv;
|
||
|
byte[] shared;
|
||
|
|
||
|
public byte[] getSharedSecret() {
|
||
|
return this.shared;
|
||
|
}
|
||
|
|
||
|
public byte[] getIV() {
|
||
|
return this.iv;
|
||
|
}
|
||
|
|
||
|
public KDFParameters(byte[] bArr, byte[] bArr2) {
|
||
|
this.shared = bArr;
|
||
|
this.iv = bArr2;
|
||
|
}
|
||
|
}
|