Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for 128 (0.04 sec)

  1. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

            SMBUtil.writeInt4(0, buffer, bufferIndex + 19);
    
            // dataCount (4 bytes)
            SMBUtil.writeInt4(200, buffer, bufferIndex + 23);
    
            // dataOffset (4 bytes)
            SMBUtil.writeInt4(128, buffer, bufferIndex + 27);
    
            // dataDisplacement (4 bytes)
            SMBUtil.writeInt4(0, buffer, bufferIndex + 31);
    
            // setupCount (1 byte) + 1 reserved byte
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/Fingerprint2011Test.java

          assertEquals(HASH_FN.newHasher().putUnencodedChars(s).hash(), HASH_FN.hashUnencodedChars(s));
        }
      }
    
      public void testUtf8() {
        char[] charsA = new char[128];
        char[] charsB = new char[128];
    
        for (int i = 0; i < charsA.length; i++) {
          if (i < 100) {
            charsA[i] = 'a';
            charsB[i] = 'a';
          } else {
            // Both two-byte characters, but must be different
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosConstants.java

        int AF_XNS = 6;
        /** Address family: ISO */
        int AF_ISO = 7;
    
        /** Authorization data type: Relevant */
        int AUTH_DATA_RELEVANT = 1;
        /** Authorization data type: PAC */
        int AUTH_DATA_PAC = 128;
    
        /** DES encryption type identifier */
        int DES_ENC_TYPE = 3;
        /** RC4 encryption type identifier */
        int RC4_ENC_TYPE = 23;
        /** RC4 algorithm name */
        String RC4_ALGORITHM = "ARCFOUR";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/SipHashFunction.java

      // The number of compression rounds.
      private final int c;
      // The number of finalization rounds.
      private final int d;
      // Two 64-bit keys (represent a single 128-bit key).
      private final long k0;
      private final long k1;
    
      /**
       * @param c the number of compression rounds (must be positive)
       * @param d the number of finalization rounds (must be positive)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java

            // Set excessive negotiate context count (should be limited to 100)
            SMBUtil.writeInt2(1000, buffer, 6);
            // Set negotiate context offset to valid value
            SMBUtil.writeInt4(128, buffer, 60);
    
            SMBProtocolDecodingException exception = assertThrows(SMBProtocolDecodingException.class, () -> {
                response.readBytesWireFormat(buffer, 0);
            });
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. fuzzing/fuzzingserver-expected.txt

    "1.1.1 OK"
    "1.1.2 OK"
    "1.1.3 OK"
    "1.1.4 OK"
    "1.1.5 OK"
    "1.1.6 OK"
    "1.1.7 OK"
    "1.1.8 OK"
    "1.2.1 OK"
    "1.2.2 OK"
    "1.2.3 OK"
    "1.2.4 OK"
    "1.2.5 OK"
    "1.2.6 OK"
    "1.2.7 OK"
    "1.2.8 OK"
    "10.1.1 OK"
    "12.1.1 UNIMPLEMENTED"
    "12.1.10 UNIMPLEMENTED"
    "12.1.11 UNIMPLEMENTED"
    "12.1.12 UNIMPLEMENTED"
    "12.1.13 UNIMPLEMENTED"
    "12.1.14 UNIMPLEMENTED"
    "12.1.15 UNIMPLEMENTED"
    "12.1.16 UNIMPLEMENTED"
    "12.1.17 UNIMPLEMENTED"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 6.7K bytes
    - Viewed (1)
  7. guava-tests/test/com/google/common/hash/HashTestUtils.java

            byte[] value = new byte[random.nextInt(128)];
            random.nextBytes(value);
            for (PrimitiveSink sink : sinks) {
              sink.putBytes(value);
            }
          }
        },
        PUT_BYTES_INT_INT() {
          @Override
          void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
            byte[] value = new byte[random.nextInt(128)];
            random.nextBytes(value);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NetShareEnumResponse.java

                int off = readInt4(buffer, bufferIndex);
                bufferIndex += 4;
                off = (off & 0xFFFF) - converter;
                off = start + off;
                e.remark = readString(buffer, off, 128, false);
    
                if (LogStream.level >= 4) {
                    log.println(e);
                }
            }
    
            return bufferIndex - start;
        }
    
        @Override
        public String toString() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/CIFSUnsupportedCryptoExceptionTest.java

        @DisplayName("Message constructor should handle crypto-specific error messages")
        @NullAndEmptySource
        @ValueSource(strings = { "AES encryption not supported", "Missing Bouncy Castle provider", "Invalid key length for AES-128",
                "RC4 cipher not available in this JVM", "DES encryption is deprecated and not supported", "HMAC-SHA256 algorithm not found",
                "RSA key generation failed: key size not supported" })
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

        * Information block is used in the calculation of the NTLMv2 response.
        */
        int NTLMSSP_NEGOTIATE_TARGET_INFO = 0x00800000;
    
        /**
        * Indicates that 128-bit encryption is supported.
        */
        int NTLMSSP_NEGOTIATE_128 = 0x20000000;
    
        /**
         * Indicates that key exchange is supported for session security.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top