- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,156 for data1 (0.01 sec)
-
src/main/java/jcifs/ntlmssp/av/AvPairs.java
* Decode a list of AvPairs * * @param data the encoded AV pairs data * @return individual pairs * @throws CIFSException if decoding fails */ public static List<AvPair> decode(final byte[] data) throws CIFSException { final List<AvPair> pairs = new LinkedList<>(); int pos = 0; boolean foundEnd = false; while (pos + 4 <= data.length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/util/Hexdump.java
} /** * Converts a byte array to a hexadecimal string representation. * * @param data the byte array to convert * @return a hexadecimal string representation of the entire byte array */ public static String toHexString(final byte[] data) { return toHexString(data, 0, data.length); } /** * This is the same as {@link jcifs.util.Hexdump#toHexString(int val, int
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosAuthData.java
* @param token the authorization data token * @param keys the Kerberos keys for decryption * @return a list of parsed authorization data * @throws PACDecodingException if the data cannot be decoded */ public static List<KerberosAuthData> parse(int authType, byte[] token, Map<Integer, KerberosKey> keys) throws PACDecodingException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacSignatureTest.java
// Verify assertEquals(defaultType, pacSignature.getType()); assertArrayEquals(checksum, pacSignature.getChecksum()); } /** * Test constructor with malformed data (too short). */ @Test void testConstructorMalformedData() { // Prepare data (only 2 bytes, less than an int) byte[] data = new byte[] { 0x01, 0x02 };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
idx += 2; response.status = SMBUtil.readInt4(data, idx); idx += 4; response.maxReadWriteSize = SMBUtil.readInt4(data, idx); idx += 4; response.preferredSendSize = SMBUtil.readInt4(data, idx); idx += 4; response.maxReceiveSize = SMBUtil.readInt4(data, idx); idx += 4; response.maxFragmentedSize = SMBUtil.readInt4(data, idx); idx += 4;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
data.setAllPageCount(queryResponseList.getAllPageCount()); data.setExistNextPage(queryResponseList.isExistNextPage()); data.setExistPrevPage(queryResponseList.isExistPrevPage()); data.setCurrentStartRecordNumber(queryResponseList.getCurrentStartRecordNumber()); data.setCurrentEndRecordNumber(queryResponseList.getCurrentEndRecordNumber()); data.setPageNumberList(queryResponseList.getPageNumberList());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
byte[] data = new byte[32]; // Dummy data, must be multiple of 8 byte[] decrypted = KerberosEncData.decrypt(data, key, KerberosConstants.DES_ENC_TYPE); assertNotNull(decrypted); // With dummy data, we can't verify the content, just that it decrypts without error // and returns a result of the expected size. assertEquals(data.length - 24, decrypted.length); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
final byte[] seqBytes = new byte[4]; SMBUtil.writeInt4(seqNum, seqBytes, 0); final MessageDigest mac = Crypto.getHMACT64(sk); mac.update(seqBytes); // sequence mac.update(data); // data final byte[] dgst = mac.digest(); byte[] trunc = new byte[8]; System.arraycopy(dgst, 0, trunc, 0, 8); if (log.isDebugEnabled()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/Decodable.java
* This interface provides methods for deserializing data from SMB protocol messages. * * @author mbechler */ public interface Decodable { /** * Decode data from a byte buffer * * @param buffer the byte buffer containing the data to decode * @param bufferIndex the starting index in the buffer * @param len the maximum length of data to decode * @return decoded length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java
searchPaging(data, form); }); } /** * Sets up search paging data for rendering the related query list. * * @param data the render data to populate * @param form the search form containing current search criteria */ protected void searchPaging(final RenderData data, final SearchForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.9K bytes - Viewed (0)