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

1 2 3 4 5 6

  /external/smack/src/org/xbill/DNS/
SSHFPRecord.java 9 * SSH Fingerprint - stores the fingerprint of an SSH host key.
33 private byte [] fingerprint; field in class:SSHFPRecord
46 * @param fingerprint The public key's fingerprint.
50 byte [] fingerprint)
55 this.fingerprint = fingerprint;
62 fingerprint = in.readByteArray();
69 fingerprint = st.getHex(true)
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
sslfingerprint.cc 63 const std::string& algorithm, const std::string& fingerprint) {
67 if (fingerprint.empty())
73 fingerprint.c_str(),
74 fingerprint.length(),
99 std::string fingerprint = local
102 std::transform(fingerprint.begin(), fingerprint.end(),
103 fingerprint.begin(), ::toupper);
104 return fingerprint;
  /external/chromium_org/third_party/webrtc/base/
sslfingerprint.cc 45 const std::string& algorithm, const std::string& fingerprint) {
49 if (fingerprint.empty())
55 fingerprint.c_str(),
56 fingerprint.length(),
81 std::string fingerprint = local
84 std::transform(fingerprint.begin(), fingerprint.end(),
85 fingerprint.begin(), ::toupper);
86 return fingerprint;
  /frameworks/base/core/java/android/service/fingerprint/
FingerprintManagerReceiver.java 1 package android.service.fingerprint;
23 * Fingerprint enrollment progress update. Enrollment is considered complete if
26 * @param fingerprintId the fingerprint we're currently enrolling
36 * Fingerprint touch detected, but not processed yet. Clients will use this message to
37 * determine a good or bad scan before the fingerprint is processed. This is meant for the
51 * Fingerprint has been detected and processed. A non-zero return indicates a valid
52 * fingerprint was detected.
70 * The given fingerprint template was successfully removed by the driver.
IFingerprintService.aidl 16 package android.service.fingerprint;
19 import android.service.fingerprint.IFingerprintServiceReceiver;
22 * Communication channel from client to the fingerprint service.
35 // Start listening for fingerprint events. This has the side effect of starting
IFingerprintServiceReceiver.aidl 16 package android.service.fingerprint;
  /external/chromium_org/net/base/
hash_value.cc 39 return fingerprint.sha1.Equals(other.fingerprint.sha1);
41 return fingerprint.sha256.Equals(other.fingerprint.sha256);
86 return sizeof(fingerprint.sha1.data);
88 return sizeof(fingerprint.sha256.data);
94 return sizeof(fingerprint.sha1.data);
105 return fingerprint.sha1.data;
107 return fingerprint.sha256.data;
hash_value.h 82 } fingerprint; member in class:net::HashValue
106 explicit HashValuesEqual(const HashValue& fingerprint) :
107 fingerprint_(fingerprint) {}
  /external/chromium_org/components/visitedlink/common/
visitedlink_common.h 38 // To ask whether a page is in history, we compute a 64-bit fingerprint of the
48 typedef uint64 Fingerprint;
49 typedef std::vector<Fingerprint> Fingerprints;
51 // A hash value of a fingerprint
54 // A fingerprint or hash value that does not exist
55 static const Fingerprint null_fingerprint_;
61 // Returns the fingerprint for the given URL.
62 Fingerprint ComputeURLFingerprint(const char* canonical_url,
67 // Looks up the given key in the table. The fingerprint for the URL is
72 bool IsVisited(Fingerprint fingerprint) const
    [all...]
visitedlink_common.cc 15 const VisitedLinkCommon::Fingerprint VisitedLinkCommon::null_fingerprint_ = 0;
42 bool VisitedLinkCommon::IsVisited(Fingerprint fingerprint) const {
46 Hash first_hash = HashFingerprint(fingerprint);
49 Fingerprint cur_fingerprint = FingerprintAt(cur_hash);
52 if (cur_fingerprint == fingerprint)
69 // Uses the top 64 bits of the MD5 sum of the canonical URL as the fingerprint,
78 VisitedLinkCommon::Fingerprint VisitedLinkCommon::ComputeURLFingerprint(
93 // This is the same as "return *(Fingerprint*)&digest.a;" but if we do that
96 // down to a char array of the same size as fingerprint, and then does th
    [all...]
  /hardware/libhardware/modules/
Android.mk 3 tv_input fingerprint
  /external/chromium_org/components/search_provider_logos/
google_logo_api.h 20 const std::string& fingerprint);
google_logo_api.cc 21 const std::string& fingerprint) {
22 return net::AppendQueryParameter(logo_url, "async", "es_dfp:" + fingerprint);
32 // "fingerprint": "db063e32",
75 logo_dict->GetString("fingerprint", &logo->metadata.fingerprint);
logo_common.h 35 // The URL from which the logo was downloaded (without the fingerprint param).
37 // A fingerprint (i.e. hash) identifying the logo. Used when revalidating the
39 std::string fingerprint; member in struct:search_provider_logos::LogoMetadata
  /external/chromium_org/tools/symsrc/
img_fingerprint.py 6 """Retrieves an image's "fingerprint".
10 foo.dll/FINGERPRINT/foo.dll
18 """Returns the fingerprint for an image file"""
pdb_fingerprint_from_img.py 6 """This will retrieve a PDBs "fingerprint" from it's corresponding executable
9 foo.pdb/FINGERPRINT/foo.pdb
27 """Returns the PDB fingerprint and the pdb filename given an image file"""
58 (fingerprint, filename) = GetPDBInfoFromImg(sys.argv[1])
59 print "%s %s" % (fingerprint, filename)
  /external/chromium_org/net/cert/
x509_cert_types.cc 69 denied_iter = denied_.find(cert->fingerprint());
74 allowed_iter = allowed_.find(cert->fingerprint());
89 denied_.erase(cert->fingerprint());
92 allowed_[cert->fingerprint()] = error;
98 allowed_iter = allowed_.find(cert->fingerprint());
100 allowed_.erase(cert->fingerprint());
101 denied_[cert->fingerprint()] |= error;
ev_root_ca_metadata.h 45 // Returns true if the root CA with the given certificate fingerprint has
47 bool HasEVPolicyOID(const SHA1HashValue& fingerprint,
54 bool AddEVCA(const SHA1HashValue& fingerprint, const char* policy);
58 bool RemoveEVCA(const SHA1HashValue& fingerprint);
  /cts/tests/tests/os/src/android/os/cts/
BuildVersionTest.java 49 * Verifies {@link Build#FINGERPRINT} follows expected format:
57 final String fingerprint = Build.FINGERPRINT; local
58 Log.i(LOG_TAG, String.format("Testing fingerprint %s", fingerprint));
60 assertEquals("Build fingerprint must not include whitespace", -1,
61 fingerprint.indexOf(' '));
62 final String[] fingerprintSegs = fingerprint.split("/");
63 assertEquals("Build fingerprint does not match expected format", 6, fingerprintSegs.length);
  /external/chromium_org/third_party/sfntly/cpp/src/test/
test_font_utils.h 31 bool fingerprint,
  /external/sfntly/cpp/src/test/
test_font_utils.h 31 bool fingerprint,
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint_browsertest.cc 5 #include "components/autofill/content/browser/risk/fingerprint.h"
10 #include "components/autofill/content/browser/risk/proto/fingerprint.pb.h"
42 const base::Callback<void(scoped_ptr<Fingerprint>)>& callback);
72 void GetFingerprintTestCallback(scoped_ptr<Fingerprint> fingerprint) {
74 ASSERT_TRUE(fingerprint->has_machine_characteristics());
75 const Fingerprint::MachineCharacteristics& machine =
76 fingerprint->machine_characteristics();
108 ASSERT_TRUE(fingerprint->has_transient_state());
109 const Fingerprint::TransientState& transient_state
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
CertificateTest.java 129 String fingerprint = getFingerprint(certificate); local
130 certificates.add(fingerprint);
168 StringBuilder fingerprint = new StringBuilder(); local
170 fingerprint.append(String.format("%02X", sha1[i]));
172 fingerprint.append(":");
175 return fingerprint.toString();
  /external/chromium_org/net/test/
cert_test_util.cc 64 const SHA1HashValue& fingerprint,
66 : fingerprint_(fingerprint),
68 EXPECT_TRUE(ev_root_ca_metadata->AddEVCA(fingerprint, policy));
cert_test_util.h 45 // root with the given fingerprint, to be treated as EV. |policy| is expressed
52 const SHA1HashValue& fingerprint,

Completed in 1156 milliseconds

1 2 3 4 5 6