Interface LMSPrivateKey
-
- All Superinterfaces:
javax.security.auth.Destroyable,java.security.Key,LMSKey,java.security.PrivateKey,java.io.Serializable
- All Known Implementing Classes:
BCLMSPrivateKey
public interface LMSPrivateKey extends LMSKey, java.security.PrivateKey
Base interface for an LMS private key
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LMSPrivateKeyextractKeyShard(int usageCount)Return a key representing a shard of the key space that can be used usageCount times.longgetIndex()Return the index of the next signature.longgetUsagesRemaining()Return the number of usages left for the private key.
-
-
-
Method Detail
-
getIndex
long getIndex()
Return the index of the next signature.- Returns:
- the index number for the next signature.
-
getUsagesRemaining
long getUsagesRemaining()
Return the number of usages left for the private key.- Returns:
- the number of times the key can be used before it is exhausted.
-
extractKeyShard
LMSPrivateKey extractKeyShard(int usageCount)
Return a key representing a shard of the key space that can be used usageCount times.Note: this will use the range [index...index + usageCount) for the current key.
- Parameters:
usageCount- the number of usages the key should have.- Returns:
- a key based on the current key that can be used usageCount times.
-
-