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

1 2

  /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/chrome/common/
visitedlink_common.h 37 // To ask whether a page is in history, we compute a 64-bit fingerprint of the
47 typedef uint64 Fingerprint;
48 typedef std::vector<Fingerprint> Fingerprints;
50 // A hash value of a fingerprint
53 // A fingerprint or hash value that does not exist
54 static const Fingerprint null_fingerprint_;
60 // Returns the fingerprint for the given URL.
61 Fingerprint ComputeURLFingerprint(const char* canonical_url,
66 // Looks up the given key in the table. The fingerprint for the URL is
71 bool IsVisited(Fingerprint fingerprint) const
    [all...]
visitedlink_common.cc 13 const VisitedLinkCommon::Fingerprint VisitedLinkCommon::null_fingerprint_ = 0;
40 bool VisitedLinkCommon::IsVisited(Fingerprint fingerprint) const {
44 Hash first_hash = HashFingerprint(fingerprint);
47 Fingerprint cur_fingerprint = FingerprintAt(cur_hash);
50 if (cur_fingerprint == fingerprint)
67 // Uses the top 64 bits of the MD5 sum of the canonical URL as the fingerprint,
76 VisitedLinkCommon::Fingerprint VisitedLinkCommon::ComputeURLFingerprint(
90 // This is the same as "return *(Fingerprint*)&digest.a;" but if we do that
93 // down to a char array of the same size as fingerprint, and then does th
    [all...]
  /external/chromium/net/base/
x509_cert_types.cc 60 if (denied_.find(cert->fingerprint()) != denied_.end()) {
62 DCHECK(allowed_.find(cert->fingerprint()) == allowed_.end());
66 if (allowed_.find(cert->fingerprint()) != allowed_.end()) {
68 DCHECK(denied_.find(cert->fingerprint()) == denied_.end());
78 denied_.erase(cert->fingerprint());
79 allowed_.insert(cert->fingerprint());
84 allowed_.erase(cert->fingerprint());
85 denied_.insert(cert->fingerprint());
ev_root_ca_metadata.h 41 bool GetPolicyOID(const SHA1Fingerprint& fingerprint,
54 // Returns true if the root CA with the given certificate fingerprint has
56 bool HasEVPolicyOID(const SHA1Fingerprint& fingerprint,
70 // Maps an EV root CA cert's SHA-1 fingerprint to its EV policy OID.
ev_root_ca_metadata.cc 23 // The SHA-1 fingerprint of the root CA certificate, used as a unique
25 SHA1Fingerprint fingerprint; member in struct:net::EVMetadata
288 const SHA1Fingerprint& fingerprint,
290 PolicyOidMap::const_iterator iter = ev_policy_.find(fingerprint);
318 bool EVRootCAMetadata::HasEVPolicyOID(const SHA1Fingerprint& fingerprint,
321 if (!GetPolicyOID(fingerprint, &ev_policy_oid))
350 ev_policy_[metadata.fingerprint] = policy;
361 ev_policy_[metadata.fingerprint] = metadata.policy_oid;
368 ev_policy_[metadata.fingerprint] = metadata.policy_oid;
x509_certificate_unittest.cc 45 // For fingerprint
46 // $ openssl x509 -inform DER -fingerprint -noout < /tmp/host.der
85 // The fingerprint of the Google certificate used in the parsing tests,
92 // The fingerprint for the Thawte SGC certificate
219 const SHA1Fingerprint& fingerprint = google_cert->fingerprint(); local
221 EXPECT_EQ(expected_fingerprint[i], fingerprint.data[i]);
285 const SHA1Fingerprint& fingerprint = webkit_cert->fingerprint(); local
287 EXPECT_EQ(webkit_fingerprint[i], fingerprint.data[i])
348 const SHA1Fingerprint& fingerprint = thawte_cert->fingerprint(); local
380 const SHA1Fingerprint& fingerprint = local
414 const SHA1Fingerprint& fingerprint = local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
BuildVersionTest.java 51 * Verifies {@link Build#FINGERPRINT} follows expected format:
59 final String fingerprint = Build.FINGERPRINT; local
60 Log.i(LOG_TAG, String.format("Testing fingerprint %s", fingerprint));
62 assertEquals("Build fingerprint must not include whitespace", -1,
63 fingerprint.indexOf(' '));
64 final String[] fingerprintSegs = fingerprint.split("/");
65 assertEquals("Build fingerprint does not match expected format", 6, fingerprintSegs.length);
  /external/chromium/chrome/browser/visitedlink/
visitedlink_event_listener.h 26 virtual void Add(VisitedLinkMaster::Fingerprint fingerprint);
visitedlink_event_listener.cc 36 void VisitedLinkEventListener::Add(VisitedLinkMaster::Fingerprint fingerprint) {
37 pending_visited_links_.push_back(fingerprint);
visitedlink_master.cc 107 // Most writes are just a single fingerprint, so we reserve that much in this
109 StackVector<char, sizeof(VisitedLinkCommon::Fingerprint)> data_;
273 Fingerprint fingerprint = ComputeURLFingerprint(url.spec().data(),
277 // If we have a pending delete for this fingerprint, cancel it.
278 std::set<Fingerprint>::iterator found =
279 deleted_since_rebuild_.find(fingerprint);
285 added_since_rebuild_.insert(fingerprint);
295 return AddFingerprint(fingerprint, true);
328 memset(hash_table_, 0, this->table_length_ * sizeof(Fingerprint));
353 Fingerprint fingerprint = local
    [all...]
visitedlink_master.h 43 // Called when new link has been added. The argument is the fingerprint
45 virtual void Add(Fingerprint fingerprint) = 0;
159 // inserted fingerprint or null_hash_ on failure.
206 // Called to add a fingerprint to the table. If |send_notifications| is true
208 // Returns the index of the inserted fingerprint or null_hash_ if there was a
210 Hash AddFingerprint(Fingerprint fingerprint, bool send_notifications);
217 const std::set<Fingerprint>& fingerprints);
219 // Removes the indicated fingerprint from the table. If the update_file fla
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
CertificateTest.java 77 String fingerprint = getFingerprint(certificate); local
78 certificates.add(fingerprint);
92 StringBuilder fingerprint = new StringBuilder(); local
94 fingerprint.append(String.format("%02X", sha1[i]));
96 fingerprint.append(":");
99 return fingerprint.toString();
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
PinListEntry.java 99 String fingerprint = getFingerprint(cert); local
100 if (pinnedFingerprints.contains(fingerprint)) {
112 byte[] fingerprint = dgst.digest(encoded);
113 return IntegralToString.bytesToHexString(fingerprint, false);
  /external/dropbear/
signkey.h 61 buffer * line, char ** fingerprint);
cli-kex.c 123 fprintf(stderr, "\nHost '%s' key accepted unconditionally.\n(fingerprint %s)\n",
129 fprintf(stderr, "\nHost '%s' is not in the trusted hosts file.\n(fingerprint %s)\nDo you want to continue connecting? (y/n)\n",
216 char * fingerprint = NULL; local
273 line, &fingerprint);
282 the fingerprint strings here, but we're exiting anyway */
284 "Fingerprint is %s\n"
289 fingerprint ? fingerprint : "UNKNOWN");
signkey.c 310 #else /* use SHA1 rather than MD5 for fingerprint */
346 /* This will return a freshly malloced string, containing a fingerprint
435 /* If fingerprint is non-NULL, it will be set to a malloc()ed fingerprint
439 buffer * line, char ** fingerprint) {
461 if (fingerprint) {
462 *fingerprint = sign_key_fingerprint(buf_getptr(decodekey, decodekeylen),
  /development/scripts/
stack 88 """Searches the given file (array of lines) for the build fingerprint."""
89 fingerprint_regex = re.compile("^.*Build fingerprint:\s'(?P<fingerprint>.*)'")
93 return fingerprint_search.group("fingerprint")
95 return None # didn't find the fingerprint string, so return none
105 def DownloadSymbols(fingerprint, cookie):
111 fingerprint: build fingerprint from the input stack trace
115 tuple (None, None) if no fingerprint is provided. Otherwise
119 SymbolDownloadException: Problem downloading symbols for fingerprint
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ComponentResultsElement.java 79 * Do not create non-fingerprint child when only fingerprint is specified.
149 * Get the list of the scenarios results from the model. Put only fingerprint ones if specified.
151 * @param fingerprint Tell whether only fingerprint scenarios are expected or not.
154 public List getScenarios(boolean fingerprint) {
155 if (!fingerprint) {
172 * Get the list of the scenarios names. Put only fingerprint ones if specified.
174 * @param fingerprint Tell whether only fingerprint scenarios are expected or not
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
CertPinManagerTest.java 51 byte[] fingerprint = dgst.digest(encoded);
52 return IntegralToString.bytesToHexString(fingerprint, false);
  /external/chromium/net/socket/
dns_cert_provenance_checker.cc 118 uint8 fingerprint[SHA1_LENGTH]; local
120 HASH_AlgSHA1, fingerprint, (uint8*) der_certs_[0].data(),
124 for (unsigned i = 0; i < sizeof(fingerprint); i++) {
126 fingerprint_hex[i*2] = hextable[fingerprint[i] >> 4];
127 fingerprint_hex[i*2 + 1] = hextable[fingerprint[i] & 15];
  /external/openssl/apps/
crl.c 84 " -fingerprint - print the crl fingerprint\n",
111 int fingerprint = 0, crlnumber = 0; local
208 else if (strcmp(*argv,"-fingerprint") == 0)
209 fingerprint= ++num;
324 if (fingerprint == i)
335 BIO_printf(bio_out,"%s Fingerprint=",
  /frameworks/native/cmds/dumpstate/
dumpstate.c 49 char build[PROPERTY_VALUE_MAX], fingerprint[PROPERTY_VALUE_MAX]; local
55 property_get("ro.build.fingerprint", fingerprint, "(unknown)");
68 printf("Build fingerprint: '%s'\n", fingerprint); /* format is important for other tools */
  /external/chromium/chrome/common/net/
x509_certificate_model_nss.cc 41 // required for storing the raw fingerprint.
45 unsigned char fingerprint[HASH_LENGTH_MAX]; local
50 memset(fingerprint, 0, len);
51 SECStatus rv = HASH_HashBuf(algorithm, fingerprint, cert->derCert.data,
54 return x509_certificate_model::ProcessRawBytes(fingerprint, len);
  /frameworks/base/services/java/com/android/server/updates/
ConfigUpdateInstallReceiver.java 195 byte[] fingerprint = dgst.digest(content);
196 return IntegralToString.bytesToHexString(fingerprint, false);

Completed in 661 milliseconds

1 2