検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 37 for hash (0.026 sec.)
Django 2.1.2 リリースノート — Django 4.0.6 ドキュメント 13433
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ansifex are incorporated. CVE-2018-16984: Password hash disclosure to "view only" admin users ¶ If an admi ... ssion to the user model, only part of the password hash is displayed in the change form. Admin users with ... ission to the user model were displayed the entire hash. While it's typically infeasible to reverse a stro ... ng password hash, if your site uses weaker password hashing algorit ...
https://man.plustar.jp/django/releases/2.1.2.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 13323
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g in this format: <algorithm>$<iterations>$<salt>$<hash> これらはユーザーのパスワードを保存するためのコンポ ... る場合は、こちらをお読みください: Djangoは PASSWORD_HASHERS 設定に基づき、使用するアルゴリズムを選択します。 ... のリストの最初のエントリ(つまり、 settings.PASSWORD_HASHERS[0] )がパスワードの保存に使用され、他の全てのエ ... つまり、他のアルゴリズムを使用したい場合は PASSWORD_HASHERS を修正して、使用したいアルゴリズムをリストの最初 ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
django.core.exceptions — Django 4.0.6 ドキュメント 11113
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ing classes. """ import operator from django.utils.hashable import make_hashable [ドキュメント] class Fiel ... , ValidationError ): return NotImplemented return hash ( self ) == hash ( other ) def __hash__ ( self ): ... if hasattr ( self , "message" ): return hash ( ( self . message , self . code , make_hashable ( ... ), ) ) if hasattr ( self , "error_dict" ): return hash ( make_hashable ( self . error_dict )) return hash ...
https://man.plustar.jp/django/_modules/django/core/exceptions.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 9250
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... behind the scenes to replace the paths with their hashed counterparts and update the cache appropriately. ... res the file names it handles by appending the MD5 hash of the file's content to the filename. For example ... d those paths ( django.contrib.staticfiles.storage.HashedFilesMixin.patterns ) cover: The @import rule and ... es of replacing paths may be needed until the file hashes converge. To prevent an infinite loop due to has ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 9013
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... actBaseUser or implements its own get_session_auth_hash() method, authenticated sessions will include the ... AC of the password field. Django verifies that the hash in the session for each request matches the one th ... th admin, update the session with the new password hash so that a user changing their own password won't l ... have similar behavior, use the update_session_auth_hash() function. update_session_auth_hash ( request , u ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
django.utils.functional — Django 4.0.6 ドキュメント 8666
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . __cast () return self . __cast () < other def __hash__ ( self ): return hash ( self . __cast ()) def __ ... gt ) __ne__ = new_method_proxy ( operator . ne ) __hash__ = new_method_proxy ( hash ) # List/Tuple/Diction ...
https://man.plustar.jp/django/_modules/django/utils/functional.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 8555
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... del ( id = 1 ) != MultitableInherited ( id = 1 ) __hash__() ¶ Model. __hash__ () ¶ The __hash__() method i ... he instance's primary key value. It is effectively hash(obj.pk) . If the instance doesn't have a primary k ... e then a TypeError will be raised (otherwise the __hash__() method would return different values before an ... d after the instance is saved, but changing the __hash__() value of an instance is forbidden in Python. g ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 8555
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ce security additions, including improved password hashing (featuring PBKDF2 and bcrypt support), new tool ... cts that you also need to fetch. Improved password hashing ¶ Django's auth system ( django.contrib.auth ) ... ectstatic management command) by appending the MD5 hash of the file's content to the filename. For example ... function has been moved to the django.contrib.auth.hashers module. Importing it from the old location will ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 8208
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ndex=True . They're also useful on other types, such as HStoreField or the range fields . To use this inde ... was added in order to support functional indexes. HashIndex ¶ class HashIndex ( * expressions , fillfacto ... r = None , ** options ) ¶ Creates a hash index. Provide an integer value from 10 to 100 to ... 90. Use this index only on PostgreSQL 10 and later Hash indexes have been available in PostgreSQL for a lo ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
django.core.signing — Django 4.0.6 ドキュメント 7861
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... The second component is a base64 encoded hmac/SHA1 hash of "$first_component:$secret" signing.loads(s) che ... ainst zip bombs. Salt can be used to namespace the hash, so that a signed string is only valid for a given ...
https://man.plustar.jp/django/_modules/django/core/signing.html - [similar]
PREV 1 2 3 4 NEXT