HomeSort by relevance Sort by last modified time
    Searched refs:bytesToHexString (Results 1 - 25 of 43) sorted by null

1 2

  /libcore/luni/src/test/java/libcore/java/lang/
IntegralToStringTest.java 36 assertEquals("abcdef", IntegralToString.bytesToHexString(
38 assertEquals("ABCDEF", IntegralToString.bytesToHexString(
  /external/google-tv-pairing-protocol/java/src/com/google/polo/encoding/
HexadecimalEncoder.java 33 return PoloUtil.bytesToHexString(secretBytes).toLowerCase();
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
PoloChallengeResponse.java 87 logDebug("getAlpha, nonce=" + PoloUtil.bytesToHexString(nonce));
120 logVerbose(" client modulus: " + PoloUtil.bytesToHexString(clientModulus));
121 logVerbose(" client exponent: " + PoloUtil.bytesToHexString(clientExponent));
122 logVerbose(" server modulus: " + PoloUtil.bytesToHexString(serverModulus));
123 logVerbose(" server exponent: " + PoloUtil.bytesToHexString(serverExponent));
124 logVerbose(" nonce: " + PoloUtil.bytesToHexString(nonce));
136 logDebug("Generated hash: " + PoloUtil.bytesToHexString(digestBytes));
190 logDebug("Nonce is: " + PoloUtil.bytesToHexString(nonce));
191 logDebug("User gamma is: " + PoloUtil.bytesToHexString(gamma));
192 logDebug("Generated gamma is: " + PoloUtil.bytesToHexString(getGamma(nonce)))
    [all...]
PoloUtil.java 80 public static String bytesToHexString(byte[] bytes) {
PairingSession.java 521 "Expected [" + PoloUtil.bytesToHexString(genAlpha) +
522 "], got [" + PoloUtil.bytesToHexString(inbandAlpha) + "]");
554 "Expected [" + PoloUtil.bytesToHexString(localAlpha) +
555 "], got [" + PoloUtil.bytesToHexString(inbandAlpha) + "]");
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
SecretAckMessage.java 46 ret.append(PoloUtil.bytesToHexString(mSecret));
SecretMessage.java 46 ret.append(PoloUtil.bytesToHexString(mSecret));
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimDataDownloadHandler.java 86 String smsc = IccUtils.bytesToHexString(
90 IccUtils.bytesToHexString(smsMessage.getPdu()),
168 String encodedEnvelope = IccUtils.bytesToHexString(envelope);
257 IccUtils.bytesToHexString(smsAckPdu), null);
GsmSMSDispatcher.java 303 mCi.sendSMSExpectMore(IccUtils.bytesToHexString(smsc),
304 IccUtils.bytesToHexString(pdu), reply);
306 mCi.sendSMS(IccUtils.bytesToHexString(smsc),
307 IccUtils.bytesToHexString(pdu), reply);
310 mCi.sendImsGsmSms(IccUtils.bytesToHexString(smsc),
311 IccUtils.bytesToHexString(pdu), tracker.mImsRetry,
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionBundle.java 153 " pushData: " + IccUtils.bytesToHexString(getPushData()) +
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
SIMRecords.java 510 + " mEfCfis=" + IccUtils.bytesToHexString(mEfCfis));
530 + " invalid mEfCfis=" + IccUtils.bytesToHexString(mEfCfis));
679 log("EF_MBI: " + IccUtils.bytesToHexString(data));
802 if(DBG) log("EF_MWIS : " + IccUtils.bytesToHexString(data));
824 if(DBG) log("EF_CPHS_MWI: " + IccUtils.bytesToHexString(data));
863 log("EF_AD: " + IccUtils.bytesToHexString(data));
    [all...]
AdnRecordLoader.java 193 + "\n" + IccUtils.bytesToHexString(data));
224 + "\n" + IccUtils.bytesToHexString(data));
UiccCarrierPrivilegeRules.java 139 return "cert: " + IccUtils.bytesToHexString(certificateHash) + " pkg: " +
254 Rlog.d(LOG_TAG, "Checking SHA1: " + IccUtils.bytesToHexString(certHash) + " : " + packageName);
255 Rlog.d(LOG_TAG, "Checking SHA256: " + IccUtils.bytesToHexString(certHash256) + " : " + packageName);
383 mRules += IccUtils.bytesToHexString(response.payload).toUpperCase(Locale.US);
RuimRecords.java 244 if (DBG) log("EF_PL=" + IccUtils.bytesToHexString(mEFpl));
272 if (DBG) log("EF_LI=" + IccUtils.bytesToHexString(mEFli));
287 IccUtils.bytesToHexString(data));
359 if (DBG) log("CSIM_MDN=" + IccUtils.bytesToHexString(data));
376 if (DBG) log("CSIM_IMSIM=" + IccUtils.bytesToHexString(data));
453 if (DBG) log("CSIM_EPRL=" + IccUtils.bytesToHexString(data));
    [all...]
IccFileHandler.java 290 IccUtils.bytesToHexString(data), pin2, mAid, onComplete);
301 IccUtils.bytesToHexString(data), null, mAid, onComplete);
  /external/conscrypt/src/platform/java/org/conscrypt/
PinListEntry.java 115 return IntegralToString.bytesToHexString(fingerprint, false);
  /external/conscrypt/src/test/java/org/conscrypt/
CertPinManagerTest.java 52 return IntegralToString.bytesToHexString(fingerprint, false);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
GsmAlphabetTest.java 244 assertEquals(IccUtils.bytesToHexString(unpacked),
245 IccUtils.bytesToHexString(
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 584 cacheKey = bytesToHexString(mDigest.digest());
591 private static String bytesToHexString(byte[] bytes) {
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 584 cacheKey = bytesToHexString(mDigest.digest());
591 private static String bytesToHexString(byte[] bytes) {
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageCache.java 584 cacheKey = bytesToHexString(mDigest.digest());
591 private static String bytesToHexString(byte[] bytes) {
  /frameworks/base/services/core/java/com/android/server/updates/
ConfigUpdateInstallReceiver.java 200 return IntegralToString.bytesToHexString(fingerprint, false);
  /frameworks/base/services/tests/servicestests/src/com/android/server/updates/
CertPinInstallReceiverTest.java 131 return IntegralToString.bytesToHexString(fingerprint, false);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
IntegralToString.java 465 public static String bytesToHexString(byte[] bytes, boolean upperCase) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccUtils.java 312 bytesToHexString(byte[] bytes) {

Completed in 2546 milliseconds

1 2