17 lines
359 B
Java
17 lines
359 B
Java
|
package org.bouncycastle.crypto.params;
|
||
|
|
||
|
import org.bouncycastle.crypto.DerivationParameters;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class ISO18033KDFParameters implements DerivationParameters {
|
||
|
byte[] seed;
|
||
|
|
||
|
public byte[] getSeed() {
|
||
|
return this.seed;
|
||
|
}
|
||
|
|
||
|
public ISO18033KDFParameters(byte[] bArr) {
|
||
|
this.seed = bArr;
|
||
|
}
|
||
|
}
|