1234567891011121314 |
- 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);
- }
- }
|