Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Leicht (0.16 sec)

  1. src/test/java/jcifs/tests/PACTest.java

            verifyArcfourHMAC(17, expect, data, key);
        }
    
    
    
        @Test
        public void testAES128Checksum () throws GeneralSecurityException {
            String data = "eight nine ten eleven twelve thirteen";
            String key = "9062430C8CDA3388922E6D6A509F5B7A";
            String expect = "01A4B088D45628F6946614E3";
            verifyAESHMAC(3, expect, key, data.getBytes(StandardCharsets.US_ASCII));
    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)
  2. src/main/java/jcifs/smb1/http/ne.css

        a {
            display: block;
            float: left;
            width: 300px;
            height: 50px;
            padding: 2px;
            font-family: Verdana, sans-serif;
            font-size: 10pt;
            color: #000000;
            text-decoration: none;
        }
        a.plain {
            display: inline;
            float: none;
            width: auto;
            height: auto;
        }
        a.sort {
            display: block;
            float: left;
    CSS
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NetworkExplorer.java

            out.println("<p><table border='0' cellspacing='0' cellpadding='0'><tr><td>");
    
            out.print("<A style=\"width: " + maxLen);
            out.print("; height: 18;\" HREF=\"");
            out.print(path);
            out.println("\"><b>&uarr;</b></a>");
            if ( fmt.equals("detail") ) {
                out.println("<br clear='all'>");
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            out.println( "<p><table border='0' cellspacing='0' cellpadding='0'><tr><td>" );
    
            out.print( "<A style=\"width: " + maxLen );
            out.print( "; height: 18;\" HREF=\"" );
            out.print( path );
            out.println( "\"><b>&uarr;</b></a>" );
            if( fmt.equals( "detail" )) {
                out.println( "<br clear='all'>" );
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/DES.java

            }
        }
    
    
        /// Encrypt a block of eight bytes.
        private void encrypt( byte[] clearText, int clearOff, byte[] cipherText, int cipherOff ) {
    
            squashBytesToInts( clearText, clearOff, tempInts, 0, 2 );
            des( tempInts, tempInts, encryptKeys );
            spreadIntsToBytes( tempInts, 0, cipherText, cipherOff, 2 );
        }
    
        /// Decrypt a block of eight bytes.
    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