IDesAccessor.cs 333 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Bowin.Common.DES
  5. {
  6. public interface IDesAccessor
  7. {
  8. string Encrypt(string EncryptString, byte[] Key, byte[] IV);
  9. string Decrypt(string DecryptString, byte[] Key, byte[] IV);
  10. string DeDesToken(DesModel desModel);
  11. }
  12. }