IAjaxCryptProvider.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:0k
源码类别:

Ajax

开发平台:

C#

  1. using System;
  2. namespace AjaxPro
  3. {
  4. public interface IAjaxCryptProvider
  5. {
  6. string Encrypt(string json);
  7. string Decrypt(string jsoncrypt);
  8. IAjaxKeyProvider KeyProvider{set;}
  9. string ClientScript{get;}
  10. }
  11. }