Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for 0x80000000 (0.03 sec)

  1. src/test/java/jcifs/ntlmssp/NtlmFlagsTest.java

        }
    
        @Test
        void testNtlmNegotiateVersion() {
            assertEquals(0x02000000, NtlmFlags.NTLMSSP_NEGOTIATE_VERSION, "NTLMSSP_NEGOTIATE_VERSION should be 0x02000000");
        }
    
        @Test
        void testNtlmNegotiate128() {
            assertEquals(0x20000000, NtlmFlags.NTLMSSP_NEGOTIATE_128, "NTLMSSP_NEGOTIATE_128 should be 0x20000000");
        }
    
        @Test
        void testNtlmNegotiateKeyExch() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Indicates that the NTLM version is included in the message.
         */
        int NTLMSSP_NEGOTIATE_VERSION = 0x2000000;
    
        /**
         * Indicates that 128-bit encryption is supported.
         */
        int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        /**
         * Request explicit key exchange
         */
        int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ACE.java

         */
        int WRITE_OWNER = 0x00080000; // 19
        /**
         * Permission to synchronize with the file
         */
        int SYNCHRONIZE = 0x00100000; // 20
        /**
         * Generic all permissions
         */
        int GENERIC_ALL = 0x10000000; // 28
        /**
         * Generic execute permission
         */
        int GENERIC_EXECUTE = 0x20000000; // 29
        /**
         * Generic write permission
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbShareInfoTest.java

            assertEquals(SmbFile.TYPE_SHARE, otherShare.getType());
    
            // Test with hidden flag (0x80000000) which should be ignored by getType()
            SmbShareInfo hiddenPrinter = new SmbShareInfo("HIDDEN_PRINTER", 1 | 0x80000000, "hidden printer");
            assertEquals(SmbFile.TYPE_PRINTER, hiddenPrinter.getType());
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        */
        int NTLMSSP_NEGOTIATE_TARGET_INFO = 0x00800000;
    
        /**
        * Indicates that 128-bit encryption is supported.
        */
        int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        /**
         * Indicates that key exchange is supported for session security.
         */
        int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
        * Indicates that 56-bit encryption is supported.
        */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/SmbConstantsTest.java

            assertEquals(0x0010, SmbConstants.CAP_NT_SMBS);
            assertEquals(0x0040, SmbConstants.CAP_STATUS32);
            assertEquals(0x1000, SmbConstants.CAP_DFS);
            assertEquals(0x80000000, SmbConstants.CAP_EXTENDED_SECURITY);
        }
    
        /**
         * Test file attribute constants.
         */
        @Test
        @DisplayName("File attribute constants are correct")
        void fileAttributesTest() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int WRITE_OWNER = 0x00080000; // 19
        /** Permission to synchronize with the file */
        public static final int SYNCHRONIZE = 0x00100000; // 20
        /** Generic all permissions */
        public static final int GENERIC_ALL = 0x10000000; // 28
        /** Generic execute permission */
        public static final int GENERIC_EXECUTE = 0x20000000; // 29
        /** Generic write permission */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NetServerEnum2Response.java

            String commentOrMasterBrowser;
    
            @Override
            public String getName() {
                return name;
            }
    
            @Override
            public int getType() {
                return (type & 0x80000000) != 0 ? SmbFile.TYPE_WORKGROUP : SmbFile.TYPE_SERVER;
            }
    
            @Override
            public int getAttributes() {
                return SmbFile.ATTR_READONLY | SmbFile.ATTR_DIRECTORY;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbShareInfo.java

            this.type = type;
            this.remark = remark;
        }
    
        @Override
        public String getName() {
            return netName;
        }
    
        @Override
        public int getType() {
            /* 0x80000000 means hidden but SmbFile.isHidden() checks for $ at end
             */
            switch (type & 0xFFFF) {
            case 1:
                return SmbFile.TYPE_PRINTER;
            case 3:
                return SmbFile.TYPE_NAMED_PIPE;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NetServerEnum2.java

    package jcifs.smb1.smb1;
    
    import java.io.UnsupportedEncodingException;
    
    class NetServerEnum2 extends SmbComTransaction {
    
        static final int SV_TYPE_ALL = 0xFFFFFFFF;
        static final int SV_TYPE_DOMAIN_ENUM = 0x80000000;
    
        static final String[] DESCR = { "WrLehDO\u0000B16BBDz\u0000", "WrLehDz\u0000B16BBDz\u0000", };
    
        String domain, lastName = null;
        int serverTypes;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top