Files
briar/briar-api/src/org/briarproject/api/UniqueId.java
2016-02-19 11:55:31 +00:00

13 lines
286 B
Java

package org.briarproject.api;
public abstract class UniqueId extends Bytes {
/** The length of a unique identifier in bytes. */
public static final int LENGTH = 32;
protected UniqueId(byte[] id) {
super(id);
if (id.length != LENGTH) throw new IllegalArgumentException();
}
}