A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. private static byte[] getAuthenticatorSource(String Source_Addr,
  2.             String Shared_Secret, String Timestamp) throws Exception{
  3.                 byte abyte2[] = new byte[100];
  4.                 byte abyte1[]={0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0};
  5.                 byte abyte3[] = new byte[16];
  6.         MD5 md5 = new MD5();
  7.         System.arraycopy(Source_Addr.getBytes(), 0, abyte2, 0, Source_Addr.length());
  8.         int l = Source_Addr.length();
  9.         System.arraycopy(abyte1, 0, abyte2, l,abyte1.length);
  10.         l +=9;
  11.         System.arraycopy(Shared_Secret.getBytes(), 0, abyte2, l, Shared_Secret.length());
  12.         l +=6;
  13.         System.arraycopy(Timestamp.getBytes(), 0, abyte2, l, Timestamp.length());
  14.         md5.update(abyte2);
  15.         md5.md5final(abyte3);
  16.         return abyte3;
  17.     }
复制代码
为什么总是返回认证错 status 3 的错误? 知道的教小弟一声!

评分

参与人数 1黑马币 +3 收起 理由
万琪 + 3 骚年,,生猛啊

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马