- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 109 for DIGEST (0.03 sec)
-
docs/smb3-features/03-multi-channel-design.md
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: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
// ============================================================ /** Basic authentication type identifier. */ public static final String BASIC = "BASIC"; /** Digest authentication type identifier. */ public static final String DIGEST = "DIGEST"; /** NTLM authentication type identifier. */ public static final String NTLM = "NTLM"; /** Form-based authentication type identifier. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
dstIndex += writeHeaderWireFormat(dst, dstIndex); dstIndex += writeAndXWireFormat(dst, dstIndex); this.length = dstIndex - start; if (this.digest != null) { this.digest.sign(dst, this.headerStart, this.length, this, this.getResponse()); } return this.length; } /* * We overload this because we want readAndXWireFormat to
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
// mimetype defaultDataMap.put(fessConfig.getIndexFieldMimetype(), mimeType); // title // content // cache // digest // host // site // url // anchor // content_length // last_modified // id // virtual_host
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
this.fid = fid; this.offset = offset; this.remaining = remaining; this.b = b; this.off = off; this.dataLength = len; this.digest = null; /* * otherwise recycled commands * like writeandx will choke if session * closes in between */ }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestWithPathTest.java
} @Override public int encode(byte[] dst, int dstIndex) { return 0; } @Override public void setDigest(SMBSigningDigest digest) { } @Override public SMBSigningDigest getDigest() { return null; } @Override public CommonServerMessageBlockResponse getResponse() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
public String getIndexFieldCreated() { return "created"; } @Override public String getIndexFieldDigest() { return "digest"; } @Override public String getIndexFieldThumbnail() { return "thumbnail"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
@MockitoSettings(strictness = Strictness.LENIENT) class Smb2SessionSetupResponseTest extends BaseTest { private Smb2SessionSetupResponse newResponse() { // Configuration is not used during decode when no signing digest is set Configuration cfg = mock(Configuration.class); return new Smb2SessionSetupResponse(cfg); } /** * Build a minimal SMB2 header for a response at the given offset.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0)