Home
last modified time | relevance | path

Searched refs:fingerprint (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/rust/crates/aho-corasick/src/packed/teddy/
DREADME.md33 introduces the concept of a fingerprint, which is computed for every block of
35 a fingerprint is computed in the same way it was computed for blocks in the
36 patterns. If the fingerprint corresponds to one that was found in a pattern,
38 corresponding fingerprint actually matches at the current location. Various
39 implementation tricks are employed to make sure the fingerprint lookup is fast;
40 typically by truncating the fingerprint. (This may, of course, provoke more
50 as part of SSE 4.2) to compute fingerprint values. This also enables the
78 At a high level, Teddy works somewhat similarly to the fingerprint algorithms
96 occurrence of any fingerprint from the set of patterns appears in a 16 byte
115 a mask that allows us to quickly compute membership of a fingerprint in a 16
[all …]
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/testutils/
DTestFontUtils.java72 public static Font[] loadFont(File file, boolean fingerprint) throws IOException { in loadFont() argument
74 fontFactory.fingerprintFont(fingerprint); in loadFont()
124 public static Font[] loadFontUsingByteArray(File file, boolean fingerprint) throws IOException { in loadFontUsingByteArray() argument
127 fontFactory.fingerprintFont(fingerprint); in loadFontUsingByteArray()
241 public static Builder builderForFontFile(File fontFile, boolean fingerprint) throws IOException { in builderForFontFile() argument
244 otfFactory.fingerprintFont(fingerprint); in builderForFontFile()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/
DFontFactory.java44 private boolean fingerprint = false; field in FontFactory
99 public void fingerprintFont(boolean fingerprint) { in fingerprintFont() argument
100 this.fingerprint= fingerprint; in fingerprintFont()
110 return this.fingerprint; in fingerprintFont()
/third_party/node/deps/openssl/openssl/apps/
Dstoreutl.c83 unsigned char *fingerprint = NULL; in storeutl_main() local
203 && fingerprint != NULL)) { in storeutl_main()
209 if (fingerprint != NULL) { in storeutl_main()
217 if ((fingerprint = OPENSSL_hexstr2buf(opt_arg(), &tmplen)) in storeutl_main()
292 fingerprint, in storeutl_main()
325 OPENSSL_free(fingerprint); in storeutl_main()
Dcrl.c93 int ret = 1, num = 0, badsig = 0, fingerprint = 0, crlnumber = 0; in crl_main() local
189 fingerprint = ++num; in crl_main()
347 if (fingerprint == i) { in crl_main()
/third_party/openssl/apps/
Dstoreutl.c83 unsigned char *fingerprint = NULL; in storeutl_main() local
203 && fingerprint != NULL)) { in storeutl_main()
209 if (fingerprint != NULL) { in storeutl_main()
217 if ((fingerprint = OPENSSL_hexstr2buf(opt_arg(), &tmplen)) in storeutl_main()
292 fingerprint, in storeutl_main()
325 OPENSSL_free(fingerprint); in storeutl_main()
Dcrl.c93 int ret = 1, num = 0, badsig = 0, fingerprint = 0, crlnumber = 0; in crl_main() local
189 fingerprint = ++num; in crl_main()
347 if (fingerprint == i) { in crl_main()
/third_party/openssl/doc/man1/
Dopenssl-storeutl.pod.in28 [B<-fingerprint> I<arg>]
114 =item B<-fingerprint> I<arg>
116 Search for an object having the given fingerprint.
120 The digest that was used to compute the fingerprint given with B<-fingerprint>.
Dopenssl-rehash.pod.in69 full SHA-1 fingerprint. A warning will be displayed if a duplicate
85 $OPENSSL x509 -hash -fingerprint -noout -in FILENAME
86 $OPENSSL crl -hash -fingerprint -noout -in FILENAME
89 file on the first line, and the fingerprint on the second,
Dopenssl-crl.pod.in26 [B<-fingerprint>]
102 =item B<-fingerprint>
104 Output the fingerprint of the CRL.
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_camera_profile.h105 const dng_fingerprint &fingerprint) in dng_camera_profile_id() argument
108 , fFingerprint (fingerprint) in dng_camera_profile_id()
121 const dng_fingerprint &fingerprint) in dng_camera_profile_id() argument
124 , fFingerprint (fingerprint) in dng_camera_profile_id()
/third_party/node/test/parallel/
Dtest-crypto-x509.js100 x509.fingerprint,
293 fingerprint: '8B:89:16:C4:99:87:D2:13:1A:64:94:36:38:A5:32:01:F0:95:3B:53', property
315 assert.strictEqual(legacyObject.fingerprint, legacyObjectCheck.fingerprint);
Dtest-tls-peer-certificate.js66 peerCert.fingerprint,
122 peerCert.fingerprint,
/third_party/node/lib/internal/crypto/
Dx509.js138 fingerprint: this.fingerprint,
223 get fingerprint() { getter in X509Certificate
226 value = this[kHandle].fingerprint();
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
Dsae_pk.c371 os_memset(tmp->fingerprint, 0, sizeof(tmp->fingerprint)); in sae_pk_set_password()
390 pos = &tmp->fingerprint[tmp->sec]; in sae_pk_set_password()
413 tmp->fingerprint_bytes = pos - tmp->fingerprint; in sae_pk_set_password()
415 tmp->fingerprint, tmp->fingerprint_bytes); in sae_pk_set_password()
758 res = os_memcmp_const(hash, tmp->fingerprint, tmp->fingerprint_bytes); in sae_pk_valid_fingerprint()
762 tmp->fingerprint, tmp->fingerprint_bytes); in sae_pk_valid_fingerprint()
/third_party/openssl/doc/man3/
DOSSL_STORE_SEARCH.pod71 and serial number pair, a key fingerprint, and an alias (for example a friendly
116 This criterion supports a search by exact match of key fingerprint.
117 The key fingerprint in itself is a string of bytes and its length, as
118 well as the algorithm that was used to compute the fingerprint.
123 and the actual fingerprint and its length can be retrieved with
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java292 long fingerprint = 0;
293 fingerprint ^= lOptPos;
294 fingerprint ^= (lReqPos << 16);
295 fingerprint ^= ((long) rReqPos << 32);
296 fingerprint ^= ((long) rOptPos << 48);
297 return fingerprint;
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/
DDecimalQuantity_SimpleStorage.java295 long fingerprint = 0;
296 fingerprint ^= lOptPos;
297 fingerprint ^= (lReqPos << 16);
298 fingerprint ^= ((long) rReqPos << 32);
299 fingerprint ^= ((long) rOptPos << 48);
300 return fingerprint;
/third_party/skia/third_party/externals/sfntly/cpp/src/test/
Dtest_font_utils.cc53 bool fingerprint, in LoadFontUsingByteVector() argument
59 factory->FingerprintFont(fingerprint); in LoadFontUsingByteVector()
Dtest_font_utils.h31 bool fingerprint,
/third_party/node/doc/api/
Dhttps.md447 Example pinning on certificate fingerprint, or the public key (similar to
475 'does not match our pinned fingerprint';
485 'does not match our pinned fingerprint';
496 console.log(' Certificate SHA256 fingerprint:', cert.fingerprint256);
528 …Certificate SHA256 fingerprint: 25:FE:39:32:D9:63:8C:8A:FC:A1:9A:29:87:D8:3E:4C:1D:98:DB:71:E4:1A:…
531 …Certificate SHA256 fingerprint: 40:3E:06:2A:26:53:05:91:13:28:5B:AF:80:A0:D4:AE:42:2C:84:8C:9F:78:…
534 …Certificate SHA256 fingerprint: 74:31:E5:F4:C3:C1:CE:46:90:77:4F:0B:61:E0:54:40:88:3B:A9:A0:1E:D0:…
/third_party/node/src/crypto/
Dcrypto_common.cc404 char fingerprint[3 * EVP_MAX_MD_SIZE]) { in AddFingerprintDigest()
409 fingerprint[3*i] = hex[(md[i] & 0xf0) >> 4]; in AddFingerprintDigest()
410 fingerprint[(3*i)+1] = hex[(md[i] & 0x0f)]; in AddFingerprintDigest()
411 fingerprint[(3*i)+2] = ':'; in AddFingerprintDigest()
415 fingerprint[(3 * (md_size - 1)) + 2] = '\0'; in AddFingerprintDigest()
563 char fingerprint[EVP_MAX_MD_SIZE * 3]; in GetFingerprintDigest() local
566 AddFingerprintDigest(md, md_size, fingerprint); in GetFingerprintDigest()
567 return OneByteString(env->isolate(), fingerprint); in GetFingerprintDigest()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/
Dfont_factory.cc33 void FontFactory::FingerprintFont(bool fingerprint) { in FingerprintFont() argument
34 fingerprint_ = fingerprint; in FingerprintFont()
/third_party/skia/third_party/externals/dawn/src/dawn_platform/
DDawnPlatform.cpp54 dawn_platform::CachingInterface* Platform::GetCachingInterface(const void* fingerprint, in GetCachingInterface() argument
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/number/
DDecimalQuantity_AbstractBCD.java168 long fingerprint = 0; in getPositionFingerprint() local
169 fingerprint ^= (lReqPos << 16); in getPositionFingerprint()
170 fingerprint ^= ((long) rReqPos << 32); in getPositionFingerprint()
171 return fingerprint; in getPositionFingerprint()

1234