IAjaxCryptProvider.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:0k
- using System;
- namespace AjaxPro
- {
- public interface IAjaxCryptProvider
- {
- string Encrypt(string json);
- string Decrypt(string jsoncrypt);
- IAjaxKeyProvider KeyProvider{set;}
- string ClientScript{get;}
- }
- }