Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for sub_authority (0.2 sec)

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

            this.sub_authority_count = (byte) ( domsid.sub_authority_count + id.sub_authority_count );
            this.sub_authority = new int[this.sub_authority_count];
            int i;
            for ( i = 0; i < domsid.sub_authority_count; i++ ) {
                this.sub_authority[ i ] = domsid.sub_authority[ i ];
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SID.java

            this.identifier_authority = domsid.identifier_authority;
            this.sub_authority_count = (byte)(domsid.sub_authority_count + 1);
            this.sub_authority = new int[this.sub_authority_count];
            int i;
            for (i = 0; i < domsid.sub_authority_count; i++) {
                this.sub_authority[i] = domsid.sub_authority[i];
            }
            this.sub_authority[i] = rid;
        }
        public SID(rpc.sid_t sid,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    	 * } SID, *PSID;
    	 */
    
    	typedef struct {
    		uint8_t revision;
    		uint8_t sub_authority_count;
    		uint8_t identifier_authority[6];
    		[size_is(sub_authority_count)] uint32_t sub_authority[*];
    	} sid_t;
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/rpc.java

            public byte revision;
            public byte sub_authority_count;
            public byte[] identifier_authority;
            public int[] sub_authority;
    
            public void encode(NdrBuffer _dst) throws NdrException {
                _dst.align(4);
                int _sub_authoritys = sub_authority_count;
                _dst.enc_ndr_long(_sub_authoritys);
                _dst.enc_ndr_small(revision);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/rpc.idl

    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    	 * } SID, *PSID;
    	 */
    
    	typedef struct {
    		uint8_t revision;
    		uint8_t sub_authority_count;
    		uint8_t identifier_authority[6];
    		[size_is(sub_authority_count)] uint32_t sub_authority[*];
    	} sid_t;
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/rpc.java

            public byte revision;
            public byte sub_authority_count;
            public byte[] identifier_authority;
            public int[] sub_authority;
    
    
            @Override
            public void encode ( NdrBuffer _dst ) throws NdrException {
                _dst.align(4);
                int _sub_authoritys = this.sub_authority_count;
                _dst.enc_ndr_long(_sub_authoritys);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:40:13 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

                bufferIndex += 8 + 4 * this.ownerUserSid.sub_authority_count;
            }
    
            if ( ownerGOffset > 0 ) {
                bufferIndex = start + ownerGOffset;
                this.ownerGroupSid = new SID(buffer, bufferIndex);
                bufferIndex += 8 + 4 * this.ownerGroupSid.sub_authority_count;
            }
    
            bufferIndex = start + daclOffset;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SID.java

        public static final int SID_TYPE_UNKNOWN = 8;
    
    
        /**
         * 
         * @return domain SID
         */
        SID getDomainSid ();
    
    
        /**
         * Get the RID
         * 
         * This is the last subauthority identifier
         * 
         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.1K bytes
    - Viewed (0)
Back to top