Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for colonne (0.26 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

            decrypt = output;
            return decrypt;
        }
    
    
        private static byte[] getHmac ( byte[] data, byte[] key ) throws GeneralSecurityException {
            Key macKey = new SecretKeySpec(key.clone(), KerberosConstants.HMAC_ALGORITHM);
            Mac mac = Mac.getInstance(KerberosConstants.HMAC_ALGORITHM);
            mac.init(macKey);
            return mac.doFinal(data);
        }
    
    
        public String getUserRealm () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/MD4.java

            this();
            context = (int[])md.context.clone();
            buffer = (byte[])md.buffer.clone();
            count = md.count;
        }
    
    
    // Cloneable method implementation
    //...........................................................................
    
        /**
         * Returns a copy of this MD object.
         */
        public Object clone() { return new MD4(this); }
    
    
    // JCE methods
    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)
  3. src/main/java/jcifs/smb1/Config.java

        public static void load( InputStream in ) throws IOException {
            if( in != null ) {
                prp.load( in );
            }
            try {
                prp.putAll( (java.util.Map)System.getProperties().clone() );
            } catch( SecurityException se ) {
                if( log.level > 1 )
                    log.println( "SecurityException: jcifs.smb1 will ignore System properties" );
            }
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SecurityBlob.java

                return 0;
            return this.b.length;
        }
    
    
        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Object#clone()
         */
        @Override
        protected Object clone () throws CloneNotSupportedException {
            return new SecurityBlob(this.b.clone());
        }
    
    
        /*
         * (non-Javadoc)
         * 
         * @see java.lang.Object#equals(java.lang.Object)
         */
        @Override
    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)
  5. src/main/java/jcifs/smb1/util/HMACT64.java

        private HMACT64(HMACT64 hmac) throws CloneNotSupportedException {
            super("HMACT64");
            this.ipad = hmac.ipad;
            this.opad = hmac.opad;
            this.md5 = (MessageDigest) hmac.md5.clone();
        }
    
        public Object clone() {
            try {
                return new HMACT64(this);
            } catch (CloneNotSupportedException ex) {
                throw new IllegalStateException(ex.getMessage());
            }
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/util/HMACT64.java

            super("HMACT64");
            this.ipad = hmac.ipad;
            this.opad = hmac.opad;
            this.md5 = (MessageDigest) hmac.md5.clone();
        }
    
    
        @Override
        public Object clone () {
            try {
                return new HMACT64(this);
            }
            catch ( CloneNotSupportedException ex ) {
                throw new IllegalStateException(ex.getMessage());
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

            this.hashesExternal = true;
        }
    
    
        protected CIFSContext getContext () {
            return this.context;
        }
    
    
        @Override
        public NtlmPasswordAuthentication clone () {
            NtlmPasswordAuthentication cloned = new NtlmPasswordAuthentication();
            cloneInternal(cloned, this);
            return cloned;
        }
    
    
        /**
         * @param to
         * @param from
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 8.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/KerberosTest.java

                }
                catch ( Exception e ) {
                    throw new CIFSException("Failed to refresh credentials", e);
                }
            }
    
    
            @Override
            public Kerb5Authenticator clone () {
                Kerb5Authenticator auth = new RefreshableKerb5Authenticator(getSubject(), getUserDomain(), getUser(), getPassword());
                cloneInternal(auth, this);
                return auth;
            }
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 11.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                ntlmContext.setTargetName(String.format("cifs/%s", host));
            }
            return ntlmContext;
        }
    
    
        @Override
        public NtlmPasswordAuthenticator clone () {
            NtlmPasswordAuthenticator cloned = new NtlmPasswordAuthenticator();
            cloneInternal(cloned, this);
            return cloned;
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                ResourceFilter ff ) throws CIFSException {
            // clone the locator so that the address index is not modified
            SmbResourceLocatorImpl locator = parent.fileLocator.clone();
            CIFSContext tc = parent.getContext();
            URL u = locator.getURL();
    
            FileEntry[] entries;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
Back to top