Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Fowler (0.17 sec)

  1. src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    
    package jcifs.smb1.smb1;
    
    import java.io.IOException;
    
    public class SecurityDescriptor {
    
        SID owner_user, owner_group;
        public int type;
        public ACE[] aces;
    
        public SecurityDescriptor() {
        }
        public SecurityDescriptor(byte[] buffer, int bufferIndex, int len) throws IOException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SID.java

         */
        public static SID EVERYONE = null;
    
        /**
         * Well known SID: CREATOR_OWNER
         */
        public static SID CREATOR_OWNER = null;
    
        /**
         * Well known SID: SYSTEM
         */
        public static SID SYSTEM = null;
    
        static {
            try {
                EVERYONE = new SID("S-1-1-0");
                CREATOR_OWNER = new SID("S-1-3-0");
                SYSTEM = new SID("S-1-5-18");
            }
    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)
  3. src/main/java/jcifs/SmbConstants.java

        static final int DELETE = 0x00010000; // 16
        static final int READ_CONTROL = 0x00020000; // 17
        static final int WRITE_DAC = 0x00040000; // 18
        static final int WRITE_OWNER = 0x00080000; // 19
        static final int SYNCHRONIZE = 0x00100000; // 20
        static final int GENERIC_ALL = 0x10000000; // 28
        static final int GENERIC_EXECUTE = 0x20000000; // 29
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/dtyp/SecurityInfo.java

    package jcifs.internal.dtyp;
    
    
    import jcifs.Decodable;
    
    
    /**
     * @author mbechler
     *
     */
    public interface SecurityInfo extends Decodable {
    
        /**
         * 
         */
        public static final int OWNER_SECURITY_INFO = 0x1;
    
        /**
         * 
         */
        public static final int GROUP_SECURITY_INFO = 0x2;
    
        /**
         * 
         */
        public static final int DACL_SECURITY_INFO = 0x4;
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    			[out] LsarSidArray *sids);
    
    	typedef [v1_enum] enum {
    		SE_GROUP_MANDATORY          = 0x00000001,
    		SE_GROUP_ENABLED_BY_DEFAULT = 0x00000002,
    		SE_GROUP_ENABLED            = 0x00000004,
    		SE_GROUP_OWNER              = 0x00000008,
    		SE_GROUP_USE_FOR_DENY_ONLY  = 0x00000010,
    		SE_GROUP_RESOURCE           = 0x20000000,
    		SE_GROUP_LOGON_ID           = 0xC0000000
    	} SamrGroupAttrs;
    
    	typedef struct {
    		uint32_t rid;
    Others
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int DELETE                = 0x00010000; // 16
        static final int READ_CONTROL          = 0x00020000; // 17
        static final int WRITE_DAC             = 0x00040000; // 18
        static final int WRITE_OWNER           = 0x00080000; // 19
        static final int SYNCHRONIZE           = 0x00100000; // 20
        static final int GENERIC_ALL           = 0x10000000; // 28
        static final int GENERIC_EXECUTE       = 0x20000000; // 29
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

            }
        }
        public static final int SE_GROUP_MANDATORY = 1;
        public static final int SE_GROUP_ENABLED_BY_DEFAULT = 2;
        public static final int SE_GROUP_ENABLED = 4;
        public static final int SE_GROUP_OWNER = 8;
        public static final int SE_GROUP_USE_FOR_DENY_ONLY = 16;
        public static final int SE_GROUP_RESOURCE = 536870912;
        public static final int SE_GROUP_LOGON_ID = -1073741824;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 14K bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbResource.java

    
        /**
         * Return the resolved owner group SID for this file or directory
         * 
         * @return the owner group SID, <code>null</code> if not present
         * @throws IOException
         */
        SID getOwnerGroup () throws IOException;
    
    
        /**
         * Return the owner group SID for this file or directory
         * 
         * @param resolve
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int READ_CONTROL          = 0x00020000; // 17
        public static final int WRITE_DAC             = 0x00040000; // 18
        public static final int WRITE_OWNER           = 0x00080000; // 19
        public static final int SYNCHRONIZE           = 0x00100000; // 20
        public static final int GENERIC_ALL           = 0x10000000; // 28
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/util/MD4.java

        /**
         * 4 32-bit words (interim result)
         */
        private int[] context = new int[4];
    
        /**
         * Number of bytes processed so far mod. 2 power of 64.
         */
        private long count;
    
        /**
         * 512 bits input buffer = 16 x 32-bit words holds until reaches 512 bits.
         */
        private byte[] buffer = new byte[BLOCK_LENGTH];
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
Back to top