namespace Connected.Security.Cryptography { public interface ICryptographyService { byte[]? Hash(string value); bool Verify(string value, byte[] existing); } }