Interface BytesKeyGenerator
public interface BytesKeyGenerator
A generator for unique byte array-based keys.
- 
Method SummaryModifier and TypeMethodDescriptionbyte[]Generate a new key.intGet the length, in bytes, of keys created by this generator.
- 
Method Details- 
getKeyLengthint getKeyLength()Get the length, in bytes, of keys created by this generator. Most unique keys are at least 8 bytes in length.
- 
generateKeybyte[] generateKey()Generate a new key.
 
-