Searched refs:mServerCert (Results 1 – 4 of 4) sorted by relevance
25 private byte[] mServerCert; field in HostAuthCompat40 mServerCert = hostAuth.mServerCert; in HostAuthCompat()59 hostAuth.mServerCert = mServerCert; in toHostAuth()90 parcel.writeByteArray(mServerCert); in writeToParcel()109 mServerCert = in.createByteArray(); in HostAuthCompat()
83 mHostAuth.mServerCert = c.getBlob(0); in SameCertificateCheckingTrustManager()105 if (mHostAuth.mServerCert != null) { in checkServerTrusted()108 ByteArrayInputStream bais = new ByteArrayInputStream(mHostAuth.mServerCert); in checkServerTrusted()125 mHostAuth.mServerCert = encodedCert; in checkServerTrusted()
249 assertNull(ha.mServerCert); // server cert is not serialized; field defaults to null in testDeserializeFromJSON()262 before.mServerCert = new byte[] {(byte) 0xFF, (byte) 0xAA}; in testSerializeAndDeserializeWithJSON()281 assertNull(after.mServerCert); // server cert is not serialized; field defaults to null in testSerializeAndDeserializeWithJSON()
72 public byte[] mServerCert = null; field in HostAuth