OpenMetaverse.Utils.SHA1 C# (CSharp) Method

SHA1() public static method

Compute the SHA-1 hash for a byte array
public static SHA1 ( byte data ) : byte[]
data byte Byte array to compute the hash for
return byte[]
        public static byte[] SHA1(byte[] data)
        {
            lock (SHA1Builder)
                return SHA1Builder.ComputeHash(data);
        }