namespace WX.Interface.Security { public interface ITransfor { string encyptData(string ciphertext, string accessKey); string decyptData(string cryptograph, string accessKey); string signData(string ciphertext, string accessKey); } }