Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for identifier_authority (0.24 sec)

  1. src/main/java/jcifs/dcerpc/rpc.idl

    	} unicode_string;
    
    	/* 
    	 * typedef struct _SID_IDENTIFIER_AUTHORITY {
    	 *     UCHAR Value[6];
    	 * } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
    	 * 
    	 * #define SECURITY_NT_AUTHORITY           {0,0,0,0,0,5}
    	 * 
    	 * typedef struct _SID {
    	 *    UCHAR Revision;
    	 *    UCHAR SubAuthorityCount;
    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    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)
  2. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	} unicode_string;
    
    	/* 
    	 * typedef struct _SID_IDENTIFIER_AUTHORITY {
    	 *     UCHAR Value[6];
    	 * } SID_IDENTIFIER_AUTHORITY, *PSID_IDENTIFIER_AUTHORITY;
    	 * 
    	 * #define SECURITY_NT_AUTHORITY           {0,0,0,0,0,5}
    	 * 
    	 * typedef struct _SID {
    	 *    UCHAR Revision;
    	 *    UCHAR SubAuthorityCount;
    	 *    SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
    	 *    [size_is(SubAuthorityCount)] ULONG SubAuthority[*];
    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)
  3. src/main/java/jcifs/smb/SID.java

            if ( this.identifier_authority[ 0 ] != (byte) 0 || this.identifier_authority[ 1 ] != (byte) 0 ) {
                ret += "0x";
                ret += Hexdump.toHexString(this.identifier_authority, 0, 6);
            }
            else {
                long shift = 0;
                long id = 0;
                for ( int i = 5; i > 1; i-- ) {
                    id += ( this.identifier_authority[ i ] & 0xFFL ) << shift;
    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)
  4. src/main/java/jcifs/smb1/smb1/SID.java

            if (identifier_authority[0] != (byte)0 || identifier_authority[1] != (byte)0) {
                ret += "0x";
                ret += Hexdump.toHexString(identifier_authority, 0, 6);
            } else {
                long shift = 0;
                long id = 0;
                for (int i = 5; i > 1; i--) {
                    id += (identifier_authority[i] & 0xFFL) << shift;
                    shift += 8;
    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)
  5. src/main/java/jcifs/smb1/dcerpc/rpc.java

                int _sub_authorityi = _src.index;
                _src.advance(4 * _sub_authoritys);
    
                if (identifier_authority == null) {
                    if (_identifier_authoritys < 0 || _identifier_authoritys > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                    identifier_authority = new byte[_identifier_authoritys];
                }
                _src = _src.derive(_identifier_authorityi);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/rpc.java

                _src.advance(4 * _sub_authoritys);
    
                if ( this.identifier_authority == null ) {
                    if ( _identifier_authoritys < 0 || _identifier_authoritys > 0xFFFF )
                        throw new NdrException(NdrException.INVALID_CONFORMANCE);
                    this.identifier_authority = new byte[_identifier_authoritys];
                }
                _src = _src.derive(_identifier_authorityi);
    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)
Back to top