- Sort Score
- Result 10 results
- Languages All
Results 181 - 182 of 182 for poolId (0.41 sec)
-
CREDITS
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================================ github.com/gobwas/pool https://github.com/gobwas/pool ---------------------------------------------------------------- The MIT License (MIT) Copyright (c) 2017-2019 Sergey Kamardin <******@****.***>
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Mar 13 05:29:51 UTC 2025 - 1.8M bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
this source code is governed by a BSD-style // license that can be found in the LICENSE file. package drbg import ( "crypto/internal/entropy" "crypto/internal/fips140" "crypto/internal/randutil" "crypto/internal/sysrand" "io" "sync" ) var drbgs = sync.Pool{ New: func() any { var c *Counter entropy.Depleted(func(seed *[48]byte) { c = NewCounter(seed) }) return c }, } // Read fills b with cryptographically secure random bytes. In FIPS mode, it // uses an SP 800-90A Rev. 1 Deterministic Random Bit Generator...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)