Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for LsarTrustInformation (0.55 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java

        }
    
        @Test
        void testLsarTrustInformationEncodeDecodeRoundTrip() throws NdrException {
            // Create trust info with test data
            lsarpc.LsarTrustInformation trustInfo = new lsarpc.LsarTrustInformation();
            trustInfo.name = new rpc.unicode_string();
            trustInfo.name.length = 14;
            trustInfo.name.maximum_length = 28;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SIDCacheImplTest.java

                lsarpc.LsarRefDomainList domains = new lsarpc.LsarRefDomainList();
                domains.count = 1;
                domains.max_count = 1;
                domains.domains = new lsarpc.LsarTrustInformation[1];
                domains.domains[0] = new lsarpc.LsarTrustInformation();
                domains.domains[0].name = new UnicodeString("TESTDOM", false);
                domains.domains[0].sid = new jcifs.dcerpc.rpc.sid_t();
                rpc.domains = domains;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    		[size_is(count)] LsarTranslatedSid *sids;
    	} LsarTransSidArray;
    
    	typedef struct {
    		unicode_string name;
    		sid_t *sid;
    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTrustInformation *domains;
    		uint32_t max_count;
    	} LsarRefDomainList;
    
    	typedef struct {
    		uint16_t sid_type;
    		unicode_string name;
    		uint32_t sid_index;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (3)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    		[size_is(count)] LsarTranslatedSid *sids;
    	} LsarTransSidArray;
    
    	typedef struct {
    		unicode_string name;
    		sid_t *sid;
    	} LsarTrustInformation;
    
    	typedef struct {
    		[range(0,1000)] uint32_t count;
    		[size_is(count)] LsarTrustInformation *domains;
    		uint32_t max_count;
    	} LsarRefDomainList;
    
    	typedef struct {
    		uint16_t sid_type;
    		unicode_string name;
    		uint32_t sid_index;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

            assertThrows(NdrException.class, () -> transSidArray.decode(mockNdrBuffer));
        }
    
        // Test for LsarTrustInformation
        @Test
        void testLsarTrustInformationEncode() throws NdrException {
            lsarpc.LsarTrustInformation trustInfo = new lsarpc.LsarTrustInformation();
            trustInfo.name = new rpc.unicode_string(); // Use real object
            trustInfo.name.length = 10;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                }
            }
        }
    
        /**
         * LSA trust information.
         */
        public static class LsarTrustInformation extends NdrObject {
    
            /**
             * Default constructor for LsarTrustInformation.
             */
            public LsarTrustInformation() {
                // Default constructor
            }
    
            /** Domain name. */
            public rpc.unicode_string name;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                }
            }
        }
    
        /**
         * LSA trust information structure.
         */
        public static class LsarTrustInformation extends NdrObject {
    
            /**
             * Default constructor for LsarTrustInformation.
             */
            public LsarTrustInformation() {
                // Default constructor
            }
    
            /** Domain name. */
            public rpc.unicode_string name;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
Back to top