Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for rsadsi (0.26 sec)

  1. src/main/java/jcifs/pac/PacDataInputStream.java

            return new SID(sidBytes, 0);
        }
    
        /**
         * Reads a full Security Identifier (SID) structure.
         * @return the SID object
         * @throws IOException if an I/O error occurs
         * @throws PACDecodingException if the SID data is invalid
         */
        public SID readSid() throws IOException, PACDecodingException {
            final int sidSize = readInt();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFileInputStream.java

        }
    
        /**
         * Reads up to b.length bytes of data from this input stream into an array of bytes.
         *
         * @throws IOException
         *             if a network error occurs
         */
    
        @Override
        public int read(final byte[] b) throws IOException {
            return read(b, 0, b.length);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                    _dst = _dst.deferred;
                    final int _sidss = this.num_sids;
                    _dst.enc_ndr_long(_sidss);
                    final int _sidsi = _dst.index;
                    _dst.advance(4 * _sidss);
    
                    _dst = _dst.derive(_sidsi);
                    for (int _i = 0; _i < _sidss; _i++) {
                        this.sids[_i].encode(_dst);
                    }
                }
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacLogonInfo.java

                        extraSidAtts[i] = new PacSidAttributes(sid, attributes[i]);
                    }
                }
    
                // ID for resource domain (used with relative IDs to get SIDs)
                SID resourceDomainId = null;
                if (resourceDomainIdPointer != 0) {
                    resourceDomainId = pacStream.readSid();
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/util/SMBUtil.java

            dst[dstIndex] = (byte) val;
            dstIndex++;
            dst[dstIndex] = (byte) (val >>= 8);
            dst[++dstIndex] = (byte) (val >>= 8);
            dst[++dstIndex] = (byte) (val >> 8);
        }
    
        /**
         * Reads a 16-bit integer value from a byte array in little-endian format
         * @param src the source byte array
         * @param srcIndex the starting index in the source array
         * @return the 16-bit integer value
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/fscc/FileBasicInfoTest.java

            // Decode to new instance (decode reads 36 bytes, encode writes 40)
            FileBasicInfo decoded = new FileBasicInfo();
            int decodedBytes = decoded.decode(buffer, 0, 36);
    
            // Verify encoding/decoding
            assertEquals(40, encodedBytes); // encode writes 40 bytes (includes padding)
            assertEquals(36, decodedBytes); // decode reads 36 bytes (no padding)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

                    _dst = _dst.deferred;
                    final int _sidss = num_sids;
                    _dst.enc_ndr_long(_sidss);
                    final int _sidsi = _dst.index;
                    _dst.advance(4 * _sidss);
    
                    _dst = _dst.derive(_sidsi);
                    for (int _i = 0; _i < _sidss; _i++) {
                        sids[_i].encode(_dst);
                    }
                }
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/rdma/RdmaStatistics.java

         *
         * @return average read latency
         */
        public double getAverageReadLatencyMicros() {
            long reads = rdmaReads.get();
            if (reads == 0) {
                return 0.0;
            }
            return totalReadTime.get() / (double) reads / 1000.0; // Convert to microseconds
        }
    
        /**
         * Calculate average write latency in microseconds
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

            return tmp[0] & 0xFF;
        }
    
        /**
         * Reads up to b.length bytes of data from this input stream into an array of bytes.
         *
         * @throws IOException if a network error occurs
         */
    
        @Override
        public int read(final byte[] b) throws IOException {
            return read(b, 0, b.length);
        }
    
        /**
         * Reads up to len bytes of data from this input stream into an array of bytes.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

        /**
         * Reads setup data from wire format
         * @param buffer source buffer
         * @param bufferIndex starting index in source buffer
         * @param len length of data to read
         * @return number of bytes read
         */
        protected abstract int readSetupWireFormat(byte[] buffer, int bufferIndex, int len);
    
        /**
         * Reads parameters from wire format
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top