Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for output_data (0.06 sec)

  1. src/test/java/jcifs/util/HMACT64Test.java

                mockedCrypto.when(Crypto::getMD5).thenReturn(mockMd5);
                byte[] innerDigest = "inner_digest".getBytes();
                byte[] expectedOutput = "output_data".getBytes();
                byte[] buffer = new byte[expectedOutput.length + 10]; // Buffer with extra space
    
                when(mockMd5.digest()).thenReturn(innerDigest);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

        public byte[] getFileId() {
            return this.fileId;
        }
    
        /**
         * Gets the decoded output data from the response.
         *
         * @return the outputData
         */
        public Decodable getOutputData() {
            return this.outputData;
        }
    
        /**
         * Gets the length of the output data.
         *
         * @return the outputLength
         */
        public int getOutputLength() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

            this.inputData = inputData;
        }
    
        /**
         * Set the output data for the IOCTL request
         * @param outputData the outputData to set
         */
        public void setOutputData(final Encodable outputData) {
            this.outputData = outputData;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#size()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbCopyUtil.java

                                    final SrvCopyChunkCopyResponse outputData = response.getOutputData(SrvCopyChunkCopyResponse.class);
                                    maxChunks = outputData.getChunksWritten();
                                    maxChunkSize = outputData.getChunkBytesWritten();
                                    byteLimit = outputData.getTotalBytesWritten();
                                    continue;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top