Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 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/smb1/util/DES.java

    // and its documentation for NON-COMMERCIAL or COMMERCIAL purposes and
    // without fee is hereby granted, provided that this copyright notice is kept
    // intact.
    //
    // WIDGET WORKSHOP MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY
    // OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    // TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/smb1/netbios/NbtAddress.java

            checkNodeStatusData();
            return macAddress;
        }
    
    /** 
     * The hostname of this address. If the hostname is null the local machines
     * IP address is returned.
     *
     * @return the text representation of the hostname associated with this address
     */ 
    
        public String getHostName() {
            /* 2010 - We no longer try a Node Status to get the
             * hostname because apparently some servers do not respond
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

            ptype = buf.dec_ndr_small();
            flags = buf.dec_ndr_small();
            if (buf.dec_ndr_long() != 0x00000010) /* Little-endian / ASCII / IEEE */
                throw new NdrException("Data representation not supported");
            length = buf.dec_ndr_short();
            if (buf.dec_ndr_short() != 0)
                throw new NdrException("DCERPC authentication not supported");
            call_id = buf.dec_ndr_long();
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcMessage.java

            }
            this.ptype = buf.dec_ndr_small();
            this.flags = buf.dec_ndr_small();
            if ( buf.dec_ndr_long() != 0x00000010 ) { /* Little-endian / ASCII / IEEE */
                throw new NdrException("Data representation not supported");
            }
            this.length = buf.dec_ndr_short();
            if ( buf.dec_ndr_short() != 0 ) {
                throw new NdrException("DCERPC authentication not supported");
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/jcifs/netbios/UniAddress.java

            }
            else if ( this.getClass().isAssignableFrom(type) ) {
                return (T) this;
            }
            return null;
        }
    
    
        /**
         * Return the a text representation of this address such as
         * <tt>MYCOMPUTER/192.168.1.15</tt>.
         */
        @Override
        public String toString () {
            return this.addr.toString();
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/UniAddress.java

            if( addr instanceof NbtAddress ) {
                return ((NbtAddress)addr).getHostAddress();
            }
            return ((InetAddress)addr).getHostAddress();
        }
    
        /**
         * Return the a text representation of this address such as
         * <tt>MYCOMPUTER/192.168.1.15</tt>.
         */
        public String toString() {
            return addr.toString();
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    */
    
    /**
     * Returns the string representation of this SmbFile object. This will
     * be the same as the URL used to construct this <code>SmbFile</code>.
     * This method will return the same value
     * as <code>getPath</code>.
     *
     * @return  The original URL representation of this SMB resource
     * @throws SmbException
     */
    
        public String toString() {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top