- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for PBKDF2 (0.88 sec)
-
src/main/java/jcifs/util/SecureCredentialStorage.java
/** * Secure credential storage with encryption at rest. * * Provides secure storage of passwords and other sensitive credentials * using AES-GCM encryption with PBKDF2 key derivation. * * Features: * - Encrypts credentials at rest using AES-256-GCM * - Uses PBKDF2 for key derivation from master password * - Secure wiping of sensitive data * - Thread-safe operations * - Protection against timing attacks */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
api/go1.24.txt
pkg crypto/mlkem, type DecapsulationKey768 struct #70122 pkg crypto/mlkem, type EncapsulationKey1024 struct #70122 pkg crypto/mlkem, type EncapsulationKey768 struct #70122 pkg crypto/pbkdf2, func Key[$0 hash.Hash](func() $0, string, []uint8, int, int) ([]uint8, error) #69488 pkg crypto/rand, func Text() string #67057 pkg crypto/sha3, func New224() *SHA3 #69982 pkg crypto/sha3, func New256() *SHA3 #69982
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Dec 17 21:28:29 UTC 2024 - 14.2K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
if err != nil { return err } if !bytes.Equal(mk, want) { return errors.New("unexpected result") } return nil }) } golang.org/fips140@v1.0.0/fips140/v1.0.0/pbkdf2/pbkdf2.go // Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package pbkdf2 import ( "crypto/internal/fips140" "crypto/internal/fips140/hmac" "errors" ) // divRoundUp divides x+y-1 by y, rounding up if the result is not whole. // This...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0)