Home
last modified time | relevance | path

Searched refs:bytesToHexString (Results 1 – 8 of 8) sorted by relevance

/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
DPoloChallengeResponse.java87 logDebug("getAlpha, nonce=" + PoloUtil.bytesToHexString(nonce)); in getAlpha()
120 logVerbose(" client modulus: " + PoloUtil.bytesToHexString(clientModulus)); in getAlpha()
121 logVerbose(" client exponent: " + PoloUtil.bytesToHexString(clientExponent)); in getAlpha()
122 logVerbose(" server modulus: " + PoloUtil.bytesToHexString(serverModulus)); in getAlpha()
123 logVerbose(" server exponent: " + PoloUtil.bytesToHexString(serverExponent)); in getAlpha()
124 logVerbose(" nonce: " + PoloUtil.bytesToHexString(nonce)); in getAlpha()
136 logDebug("Generated hash: " + PoloUtil.bytesToHexString(digestBytes)); in getAlpha()
190 logDebug("Nonce is: " + PoloUtil.bytesToHexString(nonce)); in checkGamma()
191 logDebug("User gamma is: " + PoloUtil.bytesToHexString(gamma)); in checkGamma()
192 logDebug("Generated gamma is: " + PoloUtil.bytesToHexString(getGamma(nonce))); in checkGamma()
DPairingSession.java521 "Expected [" + PoloUtil.bytesToHexString(genAlpha) + in doPairingPhase()
522 "], got [" + PoloUtil.bytesToHexString(inbandAlpha) + "]"); in doPairingPhase()
554 "Expected [" + PoloUtil.bytesToHexString(localAlpha) + in doPairingPhase()
555 "], got [" + PoloUtil.bytesToHexString(inbandAlpha) + "]"); in doPairingPhase()
DPoloUtil.java80 public static String bytesToHexString(byte[] bytes) { in bytesToHexString() method in PoloUtil
/external/google-tv-pairing-protocol/java/src/com/google/polo/encoding/
DHexadecimalEncoder.java33 return PoloUtil.bytesToHexString(secretBytes).toLowerCase(); in encodeToString()
/external/conscrypt/platform/src/main/java/org/conscrypt/
DHex.java34 public static String bytesToHexString(byte[] bytes) { in bytesToHexString() method in Hex
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
DSecretAckMessage.java46 ret.append(PoloUtil.bytesToHexString(mSecret)); in toString()
DSecretMessage.java46 ret.append(PoloUtil.bytesToHexString(mSecret)); in toString()
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
DXmlMessageBuilder.java563 String bytesStr = PoloUtil.bytesToHexString(message.getSecret()); in toXML()