19 lines
477 B
Java
19 lines
477 B
Java
package org.bouncycastle.pqc.crypto.newhope;
|
|
|
|
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
|
|
import org.bouncycastle.util.Arrays;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class NHPublicKeyParameters extends AsymmetricKeyParameter {
|
|
final byte[] pubData;
|
|
|
|
public byte[] getPubData() {
|
|
return Arrays.clone(this.pubData);
|
|
}
|
|
|
|
public NHPublicKeyParameters(byte[] bArr) {
|
|
super(false);
|
|
this.pubData = Arrays.clone(bArr);
|
|
}
|
|
}
|