- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for customData (0.11 sec)
-
src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java
} /** * Test constructor AvSingleHost(byte[] customData, byte[] machineId). * Should correctly encode custom data and machine ID. */ @Test void testAvSingleHostCustomDataMachineIdConstructor() { byte[] customData = new byte[8]; customData[0] = 0x01; customData[7] = 0x08; byte[] machineId = new byte[32]; machineId[0] = 0x10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvSingleHost.java
* * @param customData custom data for the single host (8 bytes) * @param machineId the machine identifier (32 bytes) */ public AvSingleHost(final byte[] customData, final byte[] machineId) { this(encode(customData, machineId)); } private static byte[] encode(final byte[] customData, final byte[] machineId) { final int size = 8 + 8 + 32;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0)