blob: fdd46fab1e97ecac8f453875bfa703ede629ed2f [file] [log] [blame]
package org.bouncycastle.pqc.jcajce.interfaces;
import java.security.PrivateKey;
/**
* Base interface for an XMSS private key
*/
public interface XMSSPrivateKey
extends XMSSKey, PrivateKey
{
/**
* Return the number of usages left for the private key.
*
* @return the number of times the key can be used before it is exhausted.
*/
long getUsagesRemaining();
}