- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 70 for challenges (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/logger/target/kafka/kafka_scram_client_contrib.go
// error if the server message is invalid. Calling Step after a conversation // completes is also an error. func (x *XDGSCRAMClient) Step(challenge string) (response string, err error) { response, err = x.ClientConversation.Step(challenge) return response, err } // Done returns true if the conversation is completed or has errored. func (x *XDGSCRAMClient) Done() bool { return x.ClientConversation.Done()
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
* @return true if the context is established, false otherwise */ public boolean isEstablished() { return isEstablished; } /** * Gets the server's NTLM challenge bytes. * @return the server challenge bytes */ public byte[] getServerChallenge() { return serverChallenge; } /** * Gets the signing key for message authentication.Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* * @param tc the CIFS context * @param type2 the Type-2 message containing the server challenge * @param domain the domain name * @param user the username * @param password the user's password * @param clientChallenge the client challenge bytes * @return the calculated response * @throws GeneralSecurityException if a cryptographic error occurs */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 32.7K bytes - Click Count (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. */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11.9K bytes - Click Count (0) -
src/main/java/jcifs/http/NetworkExplorer.java
} req.getSession(); /* ensure session id is set for cluster env. */ challenge = getTransportContext().getTransportPool().getChallenge(getTransportContext(), dc); if ((ntlm = NtlmSsp.authenticate(getTransportContext(), req, resp, challenge)) == null) { return; } } else { /* Basic */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 23.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
/** * Calculates the LMv2 response for NTLM authentication. * * @param type2 the Type-2 message containing the server challenge * @param domain the domain name * @param user the username * @param password the user's password * @param clientChallenge the client challenge bytes * @return the calculated LMv2 response */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 24.1K bytes - Click Count (0) -
src/main/java/jcifs/http/NtlmServlet.java
} NtlmPasswordAuthentication ntlm; if (msg.startsWith("NTLM ")) { final byte[] challenge = getTransportContext().getTransportPool().getChallenge(getTransportContext(), dc); ntlm = NtlmSsp.authenticate(getTransportContext(), request, response, challenge); if (ntlm == null) { return; } } else {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.1K bytes - Click Count (1) -
src/main/java/jcifs/smb/NtlmContext.java
} @Override public boolean isEstablished() { return this.isEstablished; } /** * Gets the server's NTLM challenge bytes. * @return the server's challenge */ public byte[] getServerChallenge() { return this.serverChallenge; } @Override public byte[] getSigningKey() { return this.masterKey;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 17.3K bytes - Click Count (1) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
} req.getSession(); /* ensure session id is set for cluster env. */ challenge = SmbSession.getChallenge(dc); if ((ntlm = NtlmSsp.authenticate(req, resp, challenge)) == null) { return; } } else { /* Basic */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 22.6K bytes - Click Count (0) -
src/main/java/jcifs/ntlmssp/av/AvSingleHost.java
import jcifs.Configuration; import jcifs.internal.util.SMBUtil; /** * NTLMSSP AV pair representing single host information in NTLM authentication. * Contains host-specific data used during the NTLM challenge-response process. * * @author mbechler */ public class AvSingleHost extends AvPair { /** * Constructs an AvSingleHost from raw byte data *Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.3K bytes - Click Count (0)