blob: fba956906699713e4be4321235db4ac9efbe3b53 [file] [log] [blame]
package org.bouncycastle.pqc.crypto.xmss;
/**
* Interface for XMSS objects that need to be storeable as a byte array.
*
*/
public interface XMSSStoreableObjectInterface {
/**
* Create byte representation of object.
*
* @return Byte representation of object.
*/
public byte[] toByteArray();
}