Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 154 for Ingest (0.07 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            return baos.toByteArray();
        }
    
        private byte[] calculateBindingHash(byte[] bindingInfo) throws IOException {
            try {
                MessageDigest digest = MessageDigest.getInstance("SHA-256");
                return digest.digest(bindingInfo);
            } catch (NoSuchAlgorithmException e) {
                throw new IOException("SHA-256 not available", e);
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

        }
    
        /**
         * @param digest
         */
        public void setDigest(final SMBSigningDigest digest) {
            this.digest = digest;
        }
    
        /**
         * @return the digest
         */
        public SMBSigningDigest getDigest() {
            return this.digest;
        }
    
        /**
         * @return the context associated with this transport connection
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/SMBSigningDigest.java

     */
    public interface SMBSigningDigest {
    
        /**
         * Performs MAC signing of the SMB. This is done as follows.
         * The signature field of the SMB is overwritten with the sequence number;
         * The MD5 digest of the MAC signing key + the entire SMB is taken;
         * The first 8 bytes of this are placed in the signature field.
         *
         * @param data
         *            The data.
         * @param offset
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java

                assertTrue(testMessage.isResponse());
            }
        }
    
        @Nested
        @DisplayName("Digest Tests")
        class DigestTests {
    
            @Test
            @DisplayName("Should get and set digest")
            void testDigestProperty() {
                assertNull(testMessage.getDigest());
                testMessage.setDigest(mockDigest);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 39.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

            dstIndex += writeHeaderWireFormat(dst, dstIndex);
            dstIndex += writeAndXWireFormat(dst, dstIndex);
            length = dstIndex - start;
    
            if (digest != null) {
                digest.sign(dst, headerStart, length, this, response);
            }
    
            return length;
        }
    
        /*
         * We overload this because we want readAndXWireFormat to
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java

                public static final String DEFAULT_LANG = "default.lang";
                public static final String DEFAULT_CONTENT = "default.content";
                public static final String DEFAULT_DIGEST = "default.digest";
                // xapth.<field>=<value>
            }
    
            // config.*
            public static class Config {
                public static final String KEEP_ORIGINAL_BODY = "keep.original.body";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

        }
    
        private AuthScheme getAuthScheme() {
            final String scheme = getProtocolScheme();
            if (Constants.BASIC.equals(scheme)) {
                return new BasicScheme();
            }
            if (Constants.DIGEST.equals(scheme)) {
                return new DigestScheme();
            }
            if (Constants.NTLM.equals(scheme)) {
                final Properties props = new Properties();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/_cloud/fess/doc.json

          },
          "timestamp": {
            "type": "date",
            "format": "date_optional_time"
          },
          "expires": {
            "type": "date",
            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbComWriteAndX.java

            this.fid = fid;
            this.offset = offset;
            this.remaining = remaining;
            this.b = b;
            this.off = off;
            dataLength = len;
            digest = null; /* otherwise recycled commands
                            * like writeandx will choke if session
                            * closes in between */
        }
    
        @Override
        int getBatchLimit(final byte command) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

                        md4.update(responseKeyNT);
                        final byte[] userSessionKey = md4.digest();
    
                        final HMACT64 hmac = new HMACT64(userSessionKey);
                        hmac.update(sessionNonce);
                        final byte[] ntlm2SessionKey = hmac.digest();
    
                        if ((getFlags() & NTLMSSP_NEGOTIATE_KEY_EXCH) != 0) {
                            masterKey = new byte[16];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
Back to top