namespace EternalArrowBackup.Contracts.ContentTransformations { using System.Threading.Tasks; public interface IContentHasher { Task ComputeHash(byte[] content); } }