Extracts the MAC from a message
static Uint8List extractMAC(Uint8List message) { validateMessageWithMAC(message); return message.sublist(message.length - MAC_LENGTH); }