HomeSort by relevance Sort by last modified time
    Searched defs:mAuthResp (Results 1 - 2 of 2) sorted by null

  /frameworks/base/obex/javax/obex/
ObexSession.java 160 header.mAuthResp = new byte[38 + userName.length];
161 header.mAuthResp[36] = (byte)0x01;
162 header.mAuthResp[37] = (byte)userName.length;
163 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length);
165 header.mAuthResp = new byte[36];
176 header.mAuthResp[0] = (byte)0x00;
177 header.mAuthResp[1] = (byte)0x10;
179 System.arraycopy(ObexHelper.computeMd5Hash(digest), 0, header.mAuthResp, 2, 16);
182 header.mAuthResp[18] = (byte)0x02;
183 header.mAuthResp[19] = (byte)0x10
    [all...]
HeaderSet.java 242 public byte[] mAuthResp; // The authentication response header

Completed in 50 milliseconds