zoukankan      html  css  js  c++  java
  • DCAApp 和 DXPApp 类的探索

    引用里面添加DCAApp  DXPApp 两个dll


    建立:
    using DXPApp;

    DCAApp.Service dcaService = new DCAApp.Service();


    变量说明
    icCode:ic卡号
    carrierType:载体类型,分为ic卡、直接通过证书号进行操作的;
    0成功,非0失败(查错误代码表,10几种)
    strRandom:服务器端随机数
    strRandomSigned:客户端加过签的服务器端随机数
    isServerAuth:是否双向认证
    strRandomClient:双向认证情况下,服务器对客户端加过签的随机数再次加签的数据。


    类成员

    认证过程相关函数 [DCAApp.Service]
    int generateRandom(string icCode, string carrierType) 产生随机数
    int verifyUser(string icCode, string carrierType, string strRandom, string strRandomSigned, bool isServerAuth, string strRandomClient)  验证用户,需进一步理解

    加解密函数 [DCAApp.Service]
    int encryptData(string icCode, string carrierType, string strUserData)  加密,暂时不知道carrierType是什么意思
    int decryptData(string strUserData);  解密数据,应该是直接解密string

    加签、验签函数 [DCAApp.Service]
    string getResponse() 取得响应的数据
    int signData(string strUserData) 验签函数, 没有加签的明文、加过签的密文
    int verifySignData(string icCode, string carrierType, string strUserData, string signUserData) 验证签名

    其他 [DCAApp.Service]
    int getEnterpriseInfo(string icCode, string carrierType, string data, string signData)  取得企业信息, data是什么意思?
     

    DXPApp.Service   (DXP = 数据交换系统)
    string confirmData(DXPConfirmRequest req)
    DXPFetchResponse fetchData(DXPFetchRequest req)
    DXPQueryResponse queryData(DXPQueryRequest req)
    DXPSendResponse sendData(DXPSendRequest req)

    DXPApp.Helper
    string getProperty(string key) 读取c:\dxp.conf文件中key对应value, 如key不存在则返回null,下例

    Helper h = new Helper();
    Console.WriteLine(h.getProperty(
    "ServiceURL"));


    byte[] service(string serviceType, byte[] b)

  • 相关阅读:
    PHP类型转换和判断类型
    PHP设计模式
    转载:IntelliJ IDEA 2016.2 配置Tomcat 运行Web项目
    Android集成友盟facebook分享
    Android Studio的Android Monitor窗口中把标签拉出来之后放不回去的解决方法
    转载:Android应用的自动更新模块
    VMware Workstation虚拟机安装Windows 7系统
    Android Studio配置使用git
    转载:Android Studio调试功能使用总结
    Android Eclipse调试技巧
  • 原文地址:https://www.cnblogs.com/oop/p/136803.html
Copyright © 2011-2022 走看看