- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for SMB2_DIALECT_0210 (0.13 seconds)
-
src/main/java/jcifs/internal/smb2/Smb2Constants.java
* SMB 2.0.2 dialect (Windows Vista/Server 2008) */ public static final int SMB2_DIALECT_0202 = 0x0202; /** * SMB 2.1 dialect (Windows 7/Server 2008R2) */ public static final int SMB2_DIALECT_0210 = 0x0210; /** * SMB 3.0 dialect (Windows 8/Server 2012) */ public static final int SMB2_DIALECT_0300 = 0x0300; /** * SMB 3.0.2 dialect (Windows 8.1/Server 2012R2) */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2ConstantsTest.java
@DisplayName("Dialects should be in ascending order") void testDialectOrdering() { assertTrue(Smb2Constants.SMB2_DIALECT_0202 < Smb2Constants.SMB2_DIALECT_0210, "SMB 2.0.2 should be less than SMB 2.1"); assertTrue(Smb2Constants.SMB2_DIALECT_0210 < Smb2Constants.SMB2_DIALECT_0300, "SMB 2.1 should be less than SMB 3.0");Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/jcifs/DialectVersion.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
throws GeneralSecurityException { switch (dialect) { case Smb2Constants.SMB2_DIALECT_0202: case Smb2Constants.SMB2_DIALECT_0210: this.algorithmName = "HmacSHA256"; this.provider = null; this.signingKey = sessionKey.clone(); break; case Smb2Constants.SMB2_DIALECT_0300:Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 9.9K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java
void testSignAndVerifyRoundTripSmb210() throws GeneralSecurityException { Smb2SigningDigest digest1 = new Smb2SigningDigest(sessionKey, Smb2Constants.SMB2_DIALECT_0210, null); Smb2SigningDigest digest2 = new Smb2SigningDigest(sessionKey, Smb2Constants.SMB2_DIALECT_0210, null); byte[] data = new byte[128]; Arrays.fill(data, (byte) 0x43);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 43.7K bytes - Click Count (0)