- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 30 for opad (0.14 sec)
-
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
*/ public Smb2TransformHeader(final byte[] nonce, final int originalMessageSize, final int flags, final long sessionId) { if (nonce.length == 12) { // For CCM cipher, pad nonce to 16 bytes with zeros System.arraycopy(nonce, 0, this.nonce, 0, 12); // Last 4 bytes remain zero-initialized } else if (nonce.length == 16) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Base64.java
final int length = string.length(); if (length == 0) { return new byte[0]; } final int pad = string.charAt(length - 2) == '=' ? 2 : string.charAt(length - 1) == '=' ? 1 : 0; final int size = length * 3 / 4 - pad; final byte[] buffer = new byte[size]; int block; int i = 0; int index = 0; while (i < length) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java
// Context handle (20 bytes) - this is both input and output (modified) if (contextHandle != null) { buf.writeOctetArray(contextHandle, 0, Math.min(contextHandle.length, 20)); // Pad with zeros if context handle is shorter than 20 bytes for (int i = contextHandle.length; i < 20; i++) { buf.enc_ndr_small(0); } } else {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/resources/fess_label_nl.properties
labels.file_crawling_configuration=Bestandscrawlen labels.file_crawling_title_details=Bestandscrawlconfiguratie labels.included_paths=Pad(en) om op te nemen in crawlen labels.excluded_paths=Pad(en) om uit te sluiten van crawlen labels.included_doc_paths=Pad(en) om op te nemen in zoeken labels.excluded_doc_paths=Pad(en) om uit te sluiten van zoeken labels.config_parameter=Configuratieparameter labels.max_access_count=Maximaal aantal toegangspogingen
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 46.1K bytes - Viewed (1) -
src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java
assertArrayEquals(machineId, actualMachineId); } /** * Test with customData and machineId that are not exactly 8 and 32 bytes respectively. * The constructor requires exact sizes, so we need to pad them manually. */ @Test void testAvSingleHostCustomDataMachineIdConstructor_ShorterInputs() { // Prepare padded arrays byte[] customData = new byte[8]; customData[0] = 0x01;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java
buffer.putInt(entry1AlignedSize); // nextEntryOffset buffer.putInt(FileNotifyInformation.FILE_ACTION_ADDED); buffer.putInt(fileNameBytes1.length); buffer.put(fileNameBytes1); // Pad to aligned size while (buffer.position() < entry1AlignedSize) { buffer.put((byte) 0); } // Second notification buffer.putInt(entry2AlignedSize); // nextEntryOffset
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
int bodyStart = headerStart + Smb2Constants.SMB2_HEADER_LENGTH; byte[] blob = new byte[] { 9, 8, 7, 6 }; // Place blob further ahead to exercise pad adjustment logic int secBufOffset = Smb2Constants.SMB2_HEADER_LENGTH + 16; // beyond current bodyIndex (64+8) int sessionFlags = Smb2SessionSetupResponse.SMB2_SESSION_FLAGS_IS_NULL;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java
// Context handle (20 bytes) if (contextHandle != null) { buf.writeOctetArray(contextHandle, 0, Math.min(contextHandle.length, 20)); // Pad with zeros if context handle is shorter than 20 bytes for (int i = contextHandle.length; i < 20; i++) { buf.enc_ndr_small(0); } } else {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.8K bytes - Viewed (0)