/// <summary> /// Copies the content hash to a byte array starting at the given offset. /// </summary> /// <remarks> /// This requires that offset + Length be /// at most the length of the array. /// </remarks> public void CopyTo(byte[] buffer, int offset) { FingerprintHash.CopyTo(buffer, offset); }
/// <summary> /// Copies the content hash to a byte array starting at the given offset. /// </summary> /// <remarks> /// This requires that offset + Length be /// at most the length of the array. /// </remarks> public void CopyTo(byte[] buffer, int offset) { BaseHash.CopyTo(buffer, offset); }