Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for 0x00A80001 (0.05 sec)

  1. src/main/java/jcifs/smb/DosError.java

                { 0x001f0001, 0xc0000001 }, { 0x001f0003, 0xc0000001 }, { 0x00200001, 0xc0000043 }, { 0x00200003, 0xc0000043 },
                { 0x00210003, 0xc0000054 }, { 0x00270003, 0xc000007f }, { 0x00340001, 0xC00000bd }, { 0x00320001, 0xC00000BB },
                { 0x00430001, 0xc00000cc }, { 0x00470001, 0xC00000d0 }, { 0x00500001, 0xc0000035 }, { 0x00570001, 0xC000000d },
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/DosError.java

                        { 0x001f0003, 0xc0000001 }, { 0x00200001, 0xc0000043 }, { 0x00200003, 0xc0000043 }, { 0x00210003, 0xc0000054 },
                        { 0x00270003, 0xc000007f }, { 0x00340001, 0xC00000bd }, { 0x00430001, 0xc00000cc }, { 0x00470001, 0xC00000d0 },
                        { 0x00500001, 0xc0000035 }, { 0x00570001, 0xc0000003 }, { 0x005a0002, 0xc00000ce }, { 0x005b0002, 0xc000000d },
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

        private static int[] SP4 = { 0x00802001, 0x00002081, 0x00002081, 0x00000080, 0x00802080, 0x00800081, 0x00800001, 0x00002001, 0x00000000,
                0x00802000, 0x00802000, 0x00802081, 0x00000081, 0x00000000, 0x00800080, 0x00800001, 0x00000001, 0x00002000, 0x00800000,
                0x00802001, 0x00000080, 0x00800000, 0x00002001, 0x00002080, 0x00800081, 0x00000001, 0x00002080, 0x00800080, 0x00002000,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/DosErrorTest.java

        static Stream<Arguments> knownMappings() {
            return Stream.of(Arguments.of(0x00000000, 0x00000000), Arguments.of(0x00020001, 0xc000000f), Arguments.of(0x00050001, 0xc0000022),
                    Arguments.of(0x00500001, 0xc0000035), Arguments.of(0x007b0001, 0xc0000033), Arguments.of(0x00320001, 0xC00000BB));
        }
    
        @ParameterizedTest
        @MethodSource("knownMappings")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/ntlmssp/NtlmFlagsTest.java

     * Test class for NtlmFlags, verifying the values of all defined constants.
     */
    public class NtlmFlagsTest {
    
        @Test
        void testNtlmNegotiateUnicode() {
            assertEquals(0x00000001, NtlmFlags.NTLMSSP_NEGOTIATE_UNICODE, "NTLMSSP_NEGOTIATE_UNICODE should be 0x00000001");
        }
    
        @Test
        void testNtlmNegotiateOem() {
            assertEquals(0x00000002, NtlmFlags.NTLMSSP_NEGOTIATE_OEM, "NTLMSSP_NEGOTIATE_OEM should be 0x00000002");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/NtlmFlags.java

    /**
     * Flags used during negotiation of NTLMSSP authentication.
     */
    public interface NtlmFlags {
    
        /**
         * Indicates whether Unicode strings are supported or used.
         */
        int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
         * Indicates whether OEM strings are supported or used.
         */
        int NTLMSSP_NEGOTIATE_OEM = 0x00000002;
    
        /**
         * Indicates whether the authentication target is requested from
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

    /**
     * Flags used during negotiation of NTLMSSP authentication.
     */
    public interface NtlmFlags {
    
        /**
        * Indicates whether Unicode strings are supported or used.
        */
        int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
        * Indicates whether OEM strings are supported or used.
        */
        int NTLMSSP_NEGOTIATE_OEM = 0x00000002;
    
        /**
        * Indicates whether the authentication target is requested from
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ACETest.java

            @DisplayName("Should have correct values for file access constants")
            void shouldHaveCorrectFileAccessConstants() {
                // Basic file operations (bits 0-8)
                assertEquals(0x00000001, ACE.FILE_READ_DATA, "FILE_READ_DATA should be 0x00000001");
                assertEquals(0x00000002, ACE.FILE_WRITE_DATA, "FILE_WRITE_DATA should be 0x00000002");
                assertEquals(0x00000004, ACE.FILE_APPEND_DATA, "FILE_APPEND_DATA should be 0x00000004");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/dtyp/ACETest.java

            assertEquals(32, size);
            assertTrue(ace.isAllow());
            assertEquals(0x08, ace.getFlags());
            assertEquals(0x00000001, ace.getAccessMask());
        }
    
        @ParameterizedTest
        @DisplayName("Test various access mask values")
        @ValueSource(ints = { 0x00000001, // FILE_READ_DATA
                0x00000002, // FILE_WRITE_DATA
                0x00000004, // FILE_APPEND_DATA
                0x00010000, // DELETE
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ACE.java

     * both <code>FILE_READ_DATA</code> and <code>FILE_WRITE_DATA</code> access.
     */
    public interface ACE {
    
        /**
         * Permission to read data from a file or list directory contents
         */
        int FILE_READ_DATA = 0x00000001; // 1
        /**
         * Permission to write data to a file or add files to a directory
         */
        int FILE_WRITE_DATA = 0x00000002; // 2
        /**
         * Permission to append data to a file or add subdirectories
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top