blob: c602d25928ff6df194d6c64793047b98e304106d [file] [log] [blame]
package org.bouncycastle.pqc.crypto.xmss;
/**
* WOTS+ public key.
*
*/
public final class WOTSPlusPublicKeyParameters {
private final byte[][] publicKey;
protected WOTSPlusPublicKeyParameters(WOTSPlusParameters params, byte[][] publicKey) {
super();
if (params == null) {
throw new NullPointerException("params == null");
}
if (publicKey == null) {
throw new NullPointerException("publicKey == null");
}
if (XMSSUtil.hasNullPointer(publicKey)) {
throw new NullPointerException("publicKey byte array == null");
}
if (publicKey.length != params.getLen()) {
throw new IllegalArgumentException("wrong publicKey size");
}
for (int i = 0; i < publicKey.length; i++) {
if (publicKey[i].length != params.getDigestSize()) {
throw new IllegalArgumentException("wrong publicKey format");
}
}
this.publicKey = XMSSUtil.cloneArray(publicKey);
}
protected byte[][] toByteArray() {
return XMSSUtil.cloneArray(publicKey);
}
}