Home | History | Annotate | Download | only in pps

Lines Matching refs:fingerprint

482          * Certificate SHA-256 fingerprint length.
508 * The SHA-256 fingerprint of the certificate.
512 * Set the certificate SHA-256 fingerprint associated with this certificate credential.
514 * @param certSha256Fingerprint The certificate fingerprint to set to
520 * Get the certificate SHA-256 fingerprint associated with this certificate credential.
522 * @return certificate SHA-256 fingerprint
596 Log.d(TAG, "Invalid SHA-256 fingerprint");
1135 // Verify SHA-256 fingerprint for client certificate.
1138 Log.d(TAG, "SHA-256 fingerprint mismatch");
1142 Log.d(TAG, "Failed to verify SHA-256 fingerprint: " + e.getMessage());
1225 * fingerprint. The certificate that matches the fingerprint is the client certificate.
1242 byte[] fingerprint = digester.digest(certificate.getEncoded());
1243 if (Arrays.equals(expectedFingerprint, fingerprint)) {