* Length of the security hash.
* Length for ECDSA is 71 or 72 or 73 bytes.
* Length for RSA is 128 bytes.
public static final int SECURITY_KEY_LENGTH = 128;
* Length of the sequence number.
public static final int SEQUENCE_NUMBER_LENGTH = 2;
* Length of the manufacturer id.
public static final int MANUFACTURER_ID_LENGTH = 2;
* Length of the device id.
public static final int DEVICE_ID_LENGTH = 10;
public static final int LENGTH_INDICATOR_LENGTH = 2;
* Buffer for security key bytes.
public byte[] securityKey = new byte[SECURITY_KEY_LENGTH];
* Buffer for sequence number bytes.
public byte[] sequenceNumber = new byte[SEQUENCE_NUMBER_LENGTH];
* Buffer for deviceid bytes.
public byte[] deviceId = new byte[DEVICE_ID_LENGTH + MANUFACTURER_ID_LENGTH];
* Buffer for OSLP payload.
public Message payloadMessage;