Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 383 for passwords (0.04 sec)

  1. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

             */
            public int current_uses;
            /**
             * The local path of the share.
             */
            public String path;
            /**
             * The share password (if any).
             */
            public String password;
            /**
             * The size of the security descriptor.
             */
            public int sd_size;
            /**
             * The security descriptor bytes.
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/request-forms.md

    Zum Beispiel stellt eine der Möglichkeiten, die OAuth2 Spezifikation zu verwenden (genannt <abbr title='„Passwort-Fluss“'>„password flow“</abbr>), die Bedingung, einen `username` und ein `password` als Formularfelder zu senden.
    
    Die <abbr title="Specification – Spezifikation">Spec</abbr> erfordert, dass die Felder exakt `username` und `password` genannt werden und als Formularfelder, nicht JSON, gesendet werden.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

             */
            public int current_uses;
            /**
             * The local path of the share.
             */
            public String path;
            /**
             * The share password (if any).
             */
            public String password;
            /**
             * The size of the security descriptor.
             */
            public int sd_size;
            /**
             * The security descriptor bytes.
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_de.properties

    errors.crud_could_not_find_crud_table = Die Daten {0} wurden nicht gefunden.
    errors.could_not_find_backup_index=Kein Backup-Index gefunden.
    errors.no_user_for_changing_password=Das aktuelle Passwort ist nicht korrekt.
    errors.failed_to_change_password=Fehler beim Ändern Ihres Passworts.
    errors.unknown_version_for_upgrade=Unbekannte Version für Upgrade.
    errors.failed_to_upgrade_from=Fehler beim Upgrade von {0}.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_de.properties

    labels.suggestWord=Wort vorschlagen
    labels.targetLabel=Label
    labels.term=Begriff
    labels.fields=Felder
    labels.ex_q=Erweiterte Abfrage
    labels.oldPassword=Aktuelles Passwort
    labels.newPassword=Neues Passwort
    labels.confirmNewPassword=Neues Passwort (bestätigen)
    
    labels.menu_system=System
    labels.menu_wizard=Assistent
    labels.menu_crawl_config=Allgemein
    labels.menu_scheduler_config=Scheduler
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  6. docs/de/docs/tutorial/security/index.md

            * `clientCredentials`
            * `authorizationCode`
        * Es gibt jedoch einen bestimmten „Flow“, der perfekt für die direkte Abwicklung der Authentifizierung in derselben Anwendung verwendet werden kann:
            * `password`: Einige der nächsten Kapitel werden Beispiele dafür behandeln.
    * `openIdConnect`: bietet eine Möglichkeit, zu definieren, wie OAuth2-Authentifizierungsdaten automatisch ermittelt werden können.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * from memory.
         *
         * @return the password as a char array
         */
        public char[] getPasswordAsCharArray() {
            checkNotClosed();
            return this.password != null && this.password.length > 0 ? this.password.clone() : this.password == null ? null : new char[0];
        }
    
        /**
         * Securely wipes the password from memory
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/login/LoginAction.java

            }
            return redirect(getClass());
        }
    
        /**
         * Handles password change for the current user.
         *
         * @param form the password form containing new password and confirmation
         * @return the HTML response after password change attempt
         */
        @Execute
        public HtmlResponse changePassword(final PasswordForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmUtil.java

            return hmac.digest();
        }
    
        /**
         * Generates the NT password hash for the given password.
         *
         * @param password the password to hash
         * @return nt password hash
         */
        public static byte[] getNTHash(final String password) {
            if (password == null) {
                throw new NullPointerException("Password parameter is required");
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsWebAuthenticationCQ.java

            TermQueryBuilder builder = regTermQ("password", password);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setPassword_NotEqual(String password) {
            setPassword_NotTerm(password, null);
        }
    
        public void setPassword_NotTerm(String password) {
            setPassword_NotTerm(password, null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 95.5K bytes
    - Viewed (0)
Back to top