Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KDF (0.01 sec)

  1. src/main/java/jcifs/util/SecureKeyManager.java

            checkNotClosed();
    
            // Simple KDF implementation (should be replaced with proper KDF like HKDF)
            // This is a placeholder - real implementation should use proper KDF
            byte[] derived = new byte[length];
    
            // Combine inputs
            byte[] labelBytes = label.getBytes(java.nio.charset.StandardCharsets.UTF_8);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  2. cmd/encryption-v1_test.go

    		if err != nil {
    			t.Fatalf("Test %d: Failed to encrypt request: %v", i, err)
    		}
    		if kdf, ok := test.metadata[crypto.MetaAlgorithm]; !ok {
    			t.Errorf("Test %d: ServerSideEncryptionKDF must be part of metadata: %v", i, kdf)
    		}
    		if iv, ok := test.metadata[crypto.MetaIV]; !ok {
    			t.Errorf("Test %d: crypto.SSEIV must be part of metadata: %v", i, iv)
    		}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            saltBuffer.putInt(rotationCount); // Rotation counter
            saltBuffer.putInt((int) (System.currentTimeMillis() / 1000)); // Timestamp for additional uniqueness
    
            // Derive new keys using SMB3 KDF with rotation-specific input
            final int dialectInt = dialect.getDialect();
            final byte[] newEncryptionKey = Smb3KeyDerivation.deriveEncryptionKey(dialectInt, modifiedSessionKey, preauthIntegrityHash);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
Back to top