Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 321 for authentication (1.12 sec)

  1. src/main/java/jcifs/ntlmssp/av/AvTimestamp.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.ntlmssp.av;
    
    import jcifs.internal.util.SMBUtil;
    
    /**
     * NTLMSSP AV pair representing timestamp information in NTLM authentication.
     * Contains time-based data used to prevent replay attacks and ensure message freshness.
     *
     * @author mbechler
     */
    public class AvTimestamp extends AvPair {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

            super();
        }
    
        /**
         * Behavior class for web configuration operations.
         */
        @Resource
        protected WebConfigBhv webConfigBhv;
    
        /**
         * Behavior class for web authentication operations.
         */
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        /**
         * Behavior class for request header operations.
         */
        @Resource
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SecurityBlob.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.smb;
    
    /**
     * This class represents the Secrity_Blob in SMB Block and is set to support
     * kerberos authentication.
     *
     * @author Shun
     *
     */
    class SecurityBlob {
    
        private byte[] b = {};
    
        SecurityBlob() {
        }
    
        SecurityBlob(final byte[] b) {
            set(b);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    #                                                 Permission
    #                                                     ------
    
    # Admin user names for authentication.
    authentication.admin.users=admin
    # Admin role names for authentication.
    authentication.admin.roles=admin
    
    # Default permissions for search roles.
    role.search.default.permissions=
    # Default display permissions for search roles.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

    import jakarta.servlet.ServletContext;
    
    /**
     * Base action class for admin pages in Fess.
     * <p>
     * This abstract class provides common functionality for all admin actions,
     * including authentication, authorization, and HTML data setup.
     * </p>
     *
     */
    public abstract class FessAdminAction extends FessBaseAction {
    
        /** Constant suffix for view names. */
        public static final String VIEW = "-view";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/CIFSContext.java

         * @return a child context using using the given credentials
         */
        CIFSContext withCredentials(Credentials creds);
    
        /**
         * Attempt to renew credentials after authentication failure
         *
         * @param locationHint URL or location hint for credential renewal
         * @param error the error that triggered renewal
         * @return whether new credentials are obtained
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

            this.signSequence = initialSequence;
        }
    
        /**
         * Constructs a signing digest from transport and authentication information
         *
         * @param transport
         *            The SMB transport containing server encryption key
         * @param auth
         *            The NTLM password authenticator containing user credentials
         * @throws SmbException
         *             If there is an error setting up the signing digest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                this.securityProvider.wrap(buf);
            }
            return buf;
        }
    
        /**
         * Sets the DCERPC security provider for authentication and message protection
         * @param securityProvider the security provider to use for DCERPC authentication
         */
        public void setDcerpcSecurityProvider(final DcerpcSecurityProvider securityProvider) {
            this.securityProvider = securityProvider;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 15.9K bytes
    - Viewed (0)
Back to top