Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 1122334455667788 (0.05 sec)

  1. src/test/java/jcifs/smb/NtlmUtilTest.java

        void testComputeResponse_basic() {
            // Arrange
            byte[] key = hex("0102030405060708090A0B0C0D0E0F10");
            byte[] serverChallenge = hex("1122334455667788");
            byte[] clientData = hex("A0A1A2A3A4");
    
            // Act
            byte[] result = NtlmUtil.computeResponse(key, serverChallenge, clientData, 0, clientData.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/ndr/NdrHyperTest.java

            verifyNoMoreInteractions(mockNdrBuffer);
        }
    
        @Test
        void testDecode() throws NdrException {
            // Test the decode method
            long decodedValue = 112233445566778L;
            NdrHyper ndrHyper = new NdrHyper(0); // Initialize with a dummy value
    
            // Configure the mock NdrBuffer to return a specific value when dec_ndr_hyper is called
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top