namespace Infrastructure.Security { public interface IEncryptionService { string CreatePasswordHash(string password, string saltkey); string CreateSalt(); T DecryptObject(string value); string EncryptObject(object value); } }