- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 352 for AUTHENTICATION (0.07 sec)
-
src/main/java/jcifs/spnego/SpnegoToken.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.spnego; import java.io.IOException; /** * Abstract base class for SPNEGO authentication tokens used in GSS-API negotiation */ public abstract class SpnegoToken { /** * Protected constructor for SPNEGO token implementations. */ protected SpnegoToken() { }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/CommonServerMessageBlock.java
* Provides core functionality for encoding/decoding SMB messages, handling message signing, * and managing message metadata such as IDs, commands, and authentication information. * * @author mbechler */ public interface CommonServerMessageBlock extends Message { /** * Decode message data from the given byte array *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBSigningDigest.java
/** * Interface for SMB message signing and verification operations. * Provides cryptographic signing capabilities for SMB protocol messages to ensure * message integrity and authenticity using MAC (Message Authentication Code) algorithms. * * @author mbechler */ public interface SMBSigningDigest { /** * Performs MAC signing of the SMB. This is done as follows.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/StringWagon.java
import org.apache.maven.wagon.OutputData; import org.apache.maven.wagon.ResourceDoesNotExistException; import org.apache.maven.wagon.StreamWagon; import org.apache.maven.wagon.TransferFailedException; import org.apache.maven.wagon.authentication.AuthenticationException; import org.apache.maven.wagon.authorization.AuthorizationException; import org.apache.maven.wagon.resource.Resource; @Named("string") @Singleton public class StringWagon extends StreamWagon {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/index.md
This is very useful when you need to: * Have shared logic (the same code logic again and again). * Share database connections. * Enforce security, authentication, role requirements, etc. * And many other things... All these, while minimizing code repetition. ## First Steps { #first-steps }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
/** * This constructor used to instance a SigningDigest object for * signing/verifying SMB using kerberos session key. * The MAC Key = concat(Session Key, Digest of Challenge); * Because of Kerberos Authentication don't have challenge, * The MAC Key = Session Key * * @param macSigningKey * The MAC key used to sign or verify SMB. */ public SMB1SigningDigest(final byte[] macSigningKey) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
docs/en/docs/how-to/custom-docs-ui-assets.md
If you integrate your API with an OAuth2 provider, you will be able to authenticate and come back to the API docs with the acquired credentials. And interact with it using the real OAuth2 authentication. Swagger UI will handle it behind the scenes for you, but it needs this "redirect" helper. /// ### Create a *path operation* to test it { #create-a-path-operation-to-test-it }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtStatusTest.java
// Should be an error status (0xC prefix) assertTrue((status & (int) 0xC0000000L) == (int) 0xC0000000L); } @Test @DisplayName("Should handle authentication failure status") void testAuthenticationFailureStatus() { // Given int status = NtStatus.NT_STATUS_LOGON_FAILURE; // When/Then assertEquals((int) 0xC000006DL, status);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SSPContext.java
import jcifs.CIFSException; /** * Security Support Provider (SSP) context. * * This interface provides context for security support provider * operations during SMB authentication. * * @author mbechler */ public interface SSPContext { /** * Gets the signing key for the session. * @return the signing key for the session
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
SECURITY.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Feb 12 00:51:25 UTC 2022 - 2.2K bytes - Viewed (0)