Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for 15 (0.13 sec)

  1. src/main/java/jcifs/smb1/util/MD4.java

            B = GG(B, C, D, A, X[15], 13);
    
            A = HH(A, B, C, D, X[ 0],  3);
            D = HH(D, A, B, C, X[ 8],  9);
            C = HH(C, D, A, B, X[ 4], 11);
            B = HH(B, C, D, A, X[12], 15);
            A = HH(A, B, C, D, X[ 2],  3);
            D = HH(D, A, B, C, X[10],  9);
            C = HH(C, D, A, B, X[ 6], 11);
            B = HH(B, C, D, A, X[14], 15);
            A = HH(A, B, C, D, X[ 1],  3);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/UniAddress.java

                    calledName = NbtAddress.SMBSERVER_NAME;
                } else {
                    int i = calledName.indexOf( '.' );
                    if( i > 1 && i < 15 ) {
                        calledName = calledName.substring( 0, i ).toUpperCase();
                    } else if( calledName.length() > 15 ) {
                        calledName = NbtAddress.SMBSERVER_NAME;
                    } else {
                        calledName = calledName.toUpperCase();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/UniAddress.java

            }
            else {
                int i = this.calledName.indexOf('.');
                if ( i > 1 && i < 15 ) {
                    this.calledName = this.calledName.substring(0, i).toUpperCase();
                }
                else if ( this.calledName.length() > 15 ) {
                    this.calledName = NbtAddress.SMBSERVER_NAME;
                }
                else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/DES.java

        private static int[] totrot = {
            1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28
        };
    
        private static byte[] pc2 = {
            (byte)13, (byte)16, (byte)10, (byte)23, (byte) 0, (byte) 4,
            (byte) 2, (byte)27, (byte)14, (byte) 5, (byte)20, (byte) 9,
            (byte)22, (byte)18, (byte)11, (byte)3 , (byte)25, (byte) 7,
            (byte)15, (byte) 6, (byte)26, (byte)19, (byte)12, (byte) 1,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/NtlmHttpFilter.java

                        this.dcList = list;
                    }
                    else { /* keep using the old list */
                        this.dcListExpiration = now + 1000 * 60 * 15; /* 15 min */
                        log.warn("Failed to retrieve DC list from WINS");
                    }
                }
    
                int max = Math.min(this.dcList.length, this.netbiosLookupRespLimit);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/NetbiosAddress.java

     * Samba or WINS. NetBIOS is currently the primary networking layer for
     * providing name service, datagram service, and session service to the
     * Microsoft Windows platform. A NetBIOS name can be 15 characters long
     * and hosts usually registers several names on the network. From a
     * Windows command prompt you can see
     * what names a host registers with the nbtstat command.
     * <p>
     * <blockquote>
     * 
     * <pre>
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbSession.java

                        if (list != null && list.length > 0) {
                            dc_list = list;
                        } else { /* keep using the old list */
                            dc_list_expiration = now + 1000 * 60 * 15; /* 15 min */
                            if (SmbTransport.log.level >= 2) {
                                SmbTransport.log.println( "Failed to retrieve DC list from WINS" );
                            }
                        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                            lmaddr
                        };
                        break;
                    case RESOLVER_WINS:
                        if ( hostname.equals(NbtAddress.MASTER_BROWSER_NAME) || hostname.length() > 15 ) {
                            // invalid netbios name
                            continue;
                        }
                        if ( possibleNTDomainOrWorkgroup ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/Name.java

                          * routines before entry into addressCache
                          */
    
        Name() {
        }
        public Name( String name, int hexCode, String scope ) {
            if( name.length() > 15 ) {
                name = name.substring( 0, 15 );
            }
            this.name = name.toUpperCase();
            this.hexCode = hexCode;
            this.scope = scope != null && scope.length() > 0 ? scope : DEFAULT_SCOPE;
            this.srcHashCode = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/tests/EnumTest.java

                    assertEquals(0, files.length);
                }
                finally {
                    f.delete();
                }
            }
        }
    
    
        @Test
        // BUG #15
        // this cannot be reproduced against samba, samba always subtracts
        // 8 bytes from the output buffer length, probably to mitigate
        // against this issue
        public void testEnumBufferSize () throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
Back to top