- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 639 for password2 (0.05 seconds)
-
docs/en/docs/how-to/conditional-openapi.md
* Make sure you have well defined Pydantic models for your request bodies and responses. * Configure any required permissions and roles using dependencies. * Never store plaintext passwords, only password hashes. * Implement and use well-known cryptographic tools, like pwdlib and JWT tokens, etc. * Add more granular permission controls with OAuth2 scopes where needed. * ...etc.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/ServerData.java
/** * Security mode flags. */ public int securityMode; /** * Security settings for the session. */ public int security; /** * Whether the server requires encrypted passwords. */ public boolean encryptedPasswords; /** * Whether message signing is enabled. */ public boolean signaturesEnabled; /** * Whether message signing is required. */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
throw new RuntimeException("Plain text passwords are disabled"); } else { // plain text final String password = a.getPassword(); this.lmHash = new byte[(password.length() + 1) * 2]; this.ntHash = new byte[0]; writeString(password, this.lmHash, 0); } }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.9K bytes - Click Count (0) -
docs/en/docs/tutorial/response-model.md
Now, whenever a browser is creating a user with a password, the API will return the same password in the response. In this case, it might not be a problem, because it's the same user sending the password. But if we use the same model for another *path operation*, we could be sending our user's passwords to every client. /// danger
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 15.5K bytes - Click Count (0) -
docs/es/docs/tutorial/security/oauth2-jwt.md
# OAuth2 con Password (y hashing), Bearer con tokens JWT { #oauth2-with-password-and-hashing-bearer-with-jwt-tokens } Ahora que tenemos todo el flujo de seguridad, hagamos que la aplicación sea realmente segura, usando tokens <abbr title="JSON Web Tokens">JWT</abbr> y hashing de contraseñas seguras. Este código es algo que puedes usar realmente en tu aplicación, guardar los hashes de las contraseñas en tu base de datos, etc.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 11.5K bytes - Click Count (0) -
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. */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 27K bytes - Click Count (0) -
src/main/resources/fess_message_de.properties
errors.invalid_str_is_included = {1} ist für {0} ungültig. errors.blank_password = Passwort ist erforderlich. errors.password_length = Das Passwort muss mindestens {0} Zeichen lang sein. errors.password_no_uppercase = Das Passwort muss mindestens einen Großbuchstaben enthalten. errors.password_no_lowercase = Das Passwort muss mindestens einen Kleinbuchstaben enthalten. errors.password_no_digit = Das Passwort muss mindestens eine Ziffer enthalten.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.6K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/oauth2-jwt.md
Et vos utilisateurs pourraient se connecter depuis votre application Django ou depuis votre application **FastAPI**, en même temps. /// ## Hacher et vérifier les mots de passe { #hash-and-verify-the-passwords } Importez les outils nécessaires depuis `pwdlib`. Créez une instance PasswordHash avec les réglages recommandés ; elle sera utilisée pour hacher et vérifier les mots de passe. /// tip | AstuceCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.6K bytes - Click Count (0) -
docs/uk/docs/tutorial/security/oauth2-jwt.md
І ваші користувачі зможуть входити як із вашого застосунку Django, так і з вашого застосунку **FastAPI** одночасно. /// ## Хешування і перевірка паролів { #hash-and-verify-the-passwords } Імпортуйте потрібні інструменти з `pwdlib`. Створіть екземпляр PasswordHash з рекомендованими налаштуваннями - він буде використаний для хешування та перевірки паролів. /// tip | ПорадаCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 17.9K bytes - Click Count (0) -
docs/ru/docs/tutorial/security/oauth2-jwt.md
При этом пользователи смогут одновременно входить в систему как из приложения Django, так и из приложения **FastAPI**. /// ## Хеширование и проверка паролей { #hash-and-verify-the-passwords } Импортируйте необходимые инструменты из `pwdlib`. Создайте экземпляр PasswordHash с рекомендованными настройками — он будет использоваться для хэширования и проверки паролей. /// tip | ПодсказкаCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 19.7K bytes - Click Count (0)