- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for extractor (0.06 sec)
-
lib/fips140/v1.0.0.zip
found in the LICENSE file. package hkdf import ( "crypto/internal/fips140" "crypto/internal/fips140/hmac" ) func Extract[H fips140.Hash](h func() H, secret, salt []byte) []byte { if len(secret) < 112/8 { fips140.RecordNonApproved() } if salt == nil { salt = make([]byte, h().Size()) } extractor := hmac.New(h, salt) hmac.MarkAsUsedInKDF(extractor) extractor.Write(secret) return extractor.Sum(nil) } func Expand[H fips140.Hash](h func() H, pseudorandomKey []byte, info string, keyLen int) []byte { out...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String getCrawlerDocumentHtmlPrunedTags(); /** * Get the value for the key 'crawler.document.html.max.digest.length'. <br> * The value is, e.g. 120 <br> * comment: Maximum length of digest extracted from HTML documents. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getCrawlerDocumentHtmlMaxDigestLength(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (2) -
src/cmd/asm/internal/asm/testdata/amd64enc.s
EXTRACTPS $0, X2, (BX) // 660f3a171300 EXTRACTPS $1, X11, (BX) // 66440f3a171b01 EXTRACTPS $2, X2, (R11) // 66410f3a171302 EXTRACTPS $3, X11, (R11) // 66450f3a171b03 EXTRACTPS $3, X2, DX // 660f3a17d203 EXTRACTPS $2, X11, DX // 66440f3a17da02 EXTRACTPS $1, X2, R11 // 66410f3a17d301
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Oct 08 21:38:44 UTC 2021 - 581.9K bytes - Viewed (1) -
docs/en/docs/release-notes.md
* Fix broken link in docs about OAuth 2.0 with scopes. PR [#275](https://github.com/tiangolo/fastapi/pull/275) by [@dmontagu](https://github.com/dmontagu). * Refactor param extraction using Pydantic `Field`: * Large refactor, improvement, and simplification of param extraction from *path operations*.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
RELEASE.md
* Delegate application failure leaves interpreter in valid state. * Add check for correct memory alignment to `MemoryAllocation::MemoryAllocation()`. * Extracts `NNAPIDelegateKernel` from nnapi_delegate.cc * Added support for `FusedBatchNormV3` in converter. * A ragged to dense op for directly calculating tensors. * Fix accidental quadratic graph construction cost in graph-mode
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 20:54:38 UTC 2025 - 740K bytes - Viewed (2)