Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 81 for challenges (0.06 seconds)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. fastapi/security/oauth2.py

            """
            The OAuth 2 specification doesn't define the challenge that should be used,
            because a `Bearer` token is not really the only option to authenticate.
    
            But declaring any other authentication challenge would be application-specific
            as it's not defined in the specification.
    
            For practical reasons, this method uses the `Bearer` challenge by default, as
            it's probably the most common one.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 22K bytes
    - Click Count (0)
Back to Top