- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for dervieApplicationKey (0.1 seconds)
-
src/main/java/jcifs/internal/smb2/Smb3KeyDerivation.java
* @param sessionKey the base session key * @param preauthIntegrity the pre-authentication integrity hash (for SMB 3.1.1) or null * @return derived application key */ public static byte[] dervieApplicationKey(final int dialect, final byte[] sessionKey, final byte[] preauthIntegrity) { return derive(sessionKey, dialect == Smb2Constants.SMB2_DIALECT_0311 ? APPLABEL_311 : APPLABEL_300,Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb3KeyDerivationTest.java
void testDeriveApplicationKey_DifferentDialects() { // When byte[] appKey300 = Smb3KeyDerivation.dervieApplicationKey(Smb2Constants.SMB2_DIALECT_0300, sessionKey, preauthIntegrity); byte[] appKey311 = Smb3KeyDerivation.dervieApplicationKey(Smb2Constants.SMB2_DIALECT_0311, sessionKey, preauthIntegrity); // Then
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 17.5K bytes - Click Count (0)