Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/internal/smb2/io/Smb2WriteResponse.java

            int start = bufferIndex;
            int structureSize = SMBUtil.readInt2(buffer, bufferIndex);
            if ( structureSize != 17 ) {
                throw new SMBProtocolDecodingException("Expected structureSize = 17");
            }
            bufferIndex += 4;
    
            this.count = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/PACTest.java

                    + "00000000000000000000000000000000000";
            String key = "B3B88E34BF46A69FC7C3FA14A09A3C918FF9BE3183FCDB995BA64E5628735C93";
    
            verifyAESMAC(17, expect, data, key);
        }
    
    
        public void testPACArcfourChecksum () throws GeneralSecurityException {
            String expect = "8CA2EC211EF808390C9F0C3F32D0C4AF";
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Oct 01 12:01:17 GMT 2023
    - 22.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/PacMac.java

         * @throws PACDecodingException
         */
        public static byte[] calculateMac ( int type, Map<Integer, KerberosKey> keys, byte[] data ) throws PACDecodingException {
            try {
                int usage = 17;
                if ( type == PacSignature.KERB_CHECKSUM_HMAC_MD5 ) {
                    KerberosKey key = keys.get(PacSignature.ETYPE_ARCFOUR_HMAC);
                    if ( key == null ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbConstants.java

        static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        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
    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)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        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
    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)
  6. src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java

            if ( structureSize == 9 ) {
                return this.readErrorResponse(buffer, bufferIndex);
            }
            else if ( structureSize != 17 ) {
                throw new SMBProtocolDecodingException("Expected structureSize = 17");
            }
    
            short dataOffset = buffer[ bufferIndex + 2 ];
            bufferIndex += 4;
            this.dataLength = SMBUtil.readInt4(buffer, bufferIndex);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 07:13:17 GMT 2018
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacConstants.java

        static final int DEVICE_CLAIMS_TYPE = 0xF;
    
        static final int LOGON_EXTRA_SIDS = 0x20;
        static final int LOGON_RESOURCE_GROUPS = 0x200;
    
        static final int MD5_KRB_SALT = 17;
        static final int MD5_BLOCK_LENGTH = 64;
    
    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)
  8. src/main/java/jcifs/pac/PacSignature.java

        public static final int HMAC_SHA1_96_AES256 = 0x00000010;
    
        public static final int ETYPE_ARCFOUR_HMAC = 23;
        public static final int ETYPE_AES128_CTS_HMAC_SHA1_96 = 17;
        public static final int ETYPE_AES256_CTS_HMAC_SHA1_96 = 18;
    
        private int type;
        private byte[] checksum;
    
    
        public PacSignature ( byte[] data ) throws PACDecodingException {
            try {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int DELETE = 0x00010000; // 16
        /**
         * 
         */
        public static final int READ_CONTROL = 0x00020000; // 17
        /**
         * 
         */
        public static final int WRITE_DAC = 0x00040000; // 18
        /**
         * 
         */
        public static final int WRITE_OWNER = 0x00080000; // 19
        /**
         * 
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/util/DES.java

        };
        private static byte[] pc1 = {
            (byte)56, (byte)48, (byte)40, (byte)32, (byte)24, (byte)16, (byte) 8,
            (byte) 0, (byte)57, (byte)49, (byte)41, (byte)33, (byte)25, (byte)17,
            (byte) 9, (byte) 1, (byte)58, (byte)50, (byte)42, (byte)34, (byte)26,
            (byte)18, (byte)10, (byte) 2, (byte)59, (byte)51, (byte)43, (byte)35,
    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)
Back to top