Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 246 for nulla (0.15 sec)

  1. src/main/java/jcifs/ntlmssp/Type2Message.java

            return "Type2Message[target=" + targetString + ",challenge=" + ( challengeBytes == null ? "null" : "<" + challengeBytes.length + " bytes>" )
                    + ",context=" + ( contextBytes == null ? "null" : "<" + contextBytes.length + " bytes>" ) + ",targetInformation="
                    + ( targetInformationBytes == null ? "null" : "<" + targetInformationBytes.length + " bytes>" ) + ",flags=0x"
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                        this.primaryDomain = a.getUserDomain() != null ? a.getUserDomain().toUpperCase() : "?";
                        if ( server.encryptedPasswords ) {
                            this.lmHash = a.getAnsiHash(tc, server.encryptionKey);
                            this.ntHash = a.getUnicodeHash(tc, server.encryptionKey);
                            // prohibit HTTP auth attempts for the null session
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 17 10:20:23 GMT 2019
    - 8.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/Handler.java

                URLStreamHandler handler = PROTOCOL_HANDLERS.get(protocol);
                if ( handler != null )
                    return handler;
                if ( factory != null ) {
                    handler = factory.createURLStreamHandler(protocol);
                }
                if ( handler == null ) {
                    String path = System.getProperty(HANDLER_PKGS_PROPERTY);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/DfsTest.java

            Assume.assumeFalse("Is standalone DFS", isStandalone());
            DfsReferralData ref = doResolve(null, "", true);
            DfsReferralData ref2 = doResolve(null, "", true);
            DfsReferralData ref3 = doResolve(null, "foo", true);
            assertNotNull(ref);
            assertNotNull(ref2);
            assertNotNull(ref3);
            assertEquals(ref, ref2);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 01 09:46:04 GMT 2020
    - 13.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

            String suppliedWorkstation = getSuppliedWorkstation();
            return "Type1Message[suppliedDomain=" + (suppliedDomain == null ? "null" : suppliedDomain) +
                    ",suppliedWorkstation=" + (suppliedWorkstation == null ? "null" : suppliedWorkstation) +
                    ",flags=0x" + jcifs.smb1.util.Hexdump.toHexString(getFlags(), 8) + "]";
        }
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                throws SmbException {
            try ( CloseableIterator<SmbResource> it = doEnum(
                root,
                wildcard,
                searchAttributes,
                fnf == null ? null : new ResourceNameFilterWrapper(fnf),
                ff == null ? null : new ResourceFilterWrapper(ff)) ) {
    
                List<SmbFile> list = new ArrayList<>();
                while ( it.hasNext() ) {
                    try ( SmbResource n = it.next() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Kerb5Authenticator.java

        private static final String DEFAULT_SERVICE = "cifs";
    
        private static final Set<ASN1ObjectIdentifier> PREFERRED_MECHS = new HashSet<>();
    
        private Subject subject = null;
        private String user = null;
        private String realm = null;
        private String service = DEFAULT_SERVICE;
        private int userLifetime = GSSCredential.DEFAULT_LIFETIME;
        private int contextLifetime = GSSContext.DEFAULT_LIFETIME;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/WatchTest.java

        @After
        public void tearDown () throws Exception {
            if ( this.executor != null ) {
                this.executor.shutdown();
                if ( this.future != null ) {
                    this.future.cancel(true);
                }
                this.executor.awaitTermination(1, TimeUnit.SECONDS);
            }
            if ( this.base != null ) {
                this.base.delete();
            }
            super.tearDown();
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/netbios/Lmhosts.java

         * 
         * @param host
         * @param tc
         * @return resolved name, null if not found
         */
        public synchronized NbtAddress getByName ( String host, CIFSContext tc ) {
            return getByName(new Name(tc.getConfig(), host, 0x20, null), tc);
        }
    
    
        synchronized NbtAddress getByName ( Name name, CIFSContext tc ) {
            NbtAddress result = null;
    
            try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java

        public int encode ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
            SMBUtil.writeInt2(this.hashAlgos != null ? this.hashAlgos.length : 0, dst, dstIndex);
            SMBUtil.writeInt2(this.salt != null ? this.salt.length : 0, dst, dstIndex + 2);
            dstIndex += 4;
    
            if ( this.hashAlgos != null ) {
                for ( int hashAlgo : this.hashAlgos ) {
                    SMBUtil.writeInt2(hashAlgo, dst, dstIndex);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.8K bytes
    - Viewed (0)
Back to top