All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.agent.event.MessageChecker Maven / Gradle / Ivy


package org.snapscript.agent.event;

import java.util.zip.Adler32;
import java.util.zip.Checksum;

public class MessageChecker {

   public static long check(byte[] data, int offset, int length) {
      Checksum checksum = new Adler32();
      checksum.update(data, offset, length);
      return checksum.getValue();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy