Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for customData (0.3 sec)

  1. 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)
  2. 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)
  3. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            assertEquals(customPath, webApiRequest.getServletPath());
        }
    
        public void test_getServletPath_withEmptyQueryString_returnsCustomPath() {
            final String customPath = "/api/v1/users";
            mockRequest.setQueryString("");
            webApiRequest = new WebApiRequest(mockRequest, customPath);
    
            assertEquals(customPath, webApiRequest.getServletPath());
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
Back to top