Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Representations (0.27 sec)

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

    import org.slf4j.LoggerFactory;
    
    import jcifs.CIFSContext;
    import jcifs.RuntimeCIFSException;
    import jcifs.dcerpc.rpc;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * Internal representation of SIDs
     * 
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
     * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt> but they may
    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/SID.java

         * resolved in which case the numeric representation is returned.
         * 
         * @return the domain name
         */
        String getDomainName ();
    
    
        /**
         * Return text representing the SID type suitable for display to
         * users. Text includes 'User', 'Domain group', 'Local group', etc.
         * 
         * @return textual representation of type
         */
        String getTypeText ();
    
    
    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)
  3. src/main/java/jcifs/smb1/smb1/SID.java

        int type;
        String domainName = null;
        String acctName = null;
        String origin_server = null;
        NtlmPasswordAuthentication origin_auth = null;
    
        /*
         * Construct a SID from it's binary representation.
         */
        public SID(byte[] src, int si) {
            revision = src[si++];
            sub_authority_count = src[si++];
            identifier_authority = new byte[6];
    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)
Back to top