using System; using System.Collections.Generic; using System.Text; namespace Bowin.Common.Encoder.DES { public interface IDesAccessor { string Encrypt(string EncryptString, byte[] Key, byte[] IV); string Decrypt(string DecryptString, byte[] Key, byte[] IV); string DeDesToken(DesModel desModel); } }