検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 18 for hasher (0.023 sec.)
Django 1.8.10 リリースノート — Django 4.0.6 ドキュメント 12559
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... enumeration through timing difference on password hasher work factor upgrade ¶ In each major version of Dja ... default number of iterations for the PBKDF2PasswordHasher and its subclasses has increased. This improves th ... est for a nonexistent user (which runs the default hasher's default number of iterations since Django 1.6). ... no longer a timing difference. The new BasePasswordHasher.harden_runtime() method allows hashers to bridge t ...
https://man.plustar.jp/django/releases/1.8.10.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 12268
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... る場合は、こちらをお読みください: Djangoは PASSWORD_HASHERS 設定に基づき、使用するアルゴリズムを選択します。こ ... のリストの最初のエントリ(つまり、 settings.PASSWORD_HASHERS[0] )がパスワードの保存に使用され、他の全てのエン ... つまり、他のアルゴリズムを使用したい場合は PASSWORD_HASHERS を修正して、使用したいアルゴリズムをリストの最初に ... する必要があります。 デフォルトでの PASSWORD_HASHERS PASSWORD_HASHERS = [ 'django.contrib.auth.hashers ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
Django 1.9.3 リリースノート — Django 4.0.6 ドキュメント 12165
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... enumeration through timing difference on password hasher work factor upgrade ¶ In each major version of Dja ... default number of iterations for the PBKDF2PasswordHasher and its subclasses has increased. This improves th ... est for a nonexistent user (which runs the default hasher's default number of iterations since Django 1.6). ... no longer a timing difference. The new BasePasswordHasher.harden_runtime() method allows hashers to bridge t ...
https://man.plustar.jp/django/releases/1.9.3.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 8699
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... using the Meta.constraints option. scrypt password hasher ¶ The new scrypt password hasher is more secure an ... he default iteration count for the PBKDF2 password hasher is increased from 260,000 to 320,000. The new Logi ... tion Functional unique constraints scrypt password hasher Redis cache backend Template based form rendering ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
Django 3.2 release notes — Django 4.0.6 ドキュメント 8304
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he default iteration count for the PBKDF2 password hasher is increased from 216,000 to 260,000. The default ... variant for the Argon2 password hasher is changed to Argon2id. memory_cost and parallelis ... ed environments. If this is the case, the existing hasher can be subclassed to override the defaults. The de ... ntropy for the Argon2, MD5, PBKDF2, SHA-1 password hashers is increased from 71 to 128 bits. django.contrib. ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 8218
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y recommend to use it from now on. String types of hasher method parameters ¶ If you have written a custom p ... assword hasher , your encode() , verify() or safe_summary() metho ... rsion of simplejson no longer used String types of hasher method parameters Validation of previous_page_numb ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 8115
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s PostgreSQL 9.4 and higher. Removed BCryptPasswordHasher from the default PASSWORD_HASHERS setting ¶ If you ... with Django 1.4 or 1.5 (before BCryptSHA256PasswordHasher was added in Django 1.6), you might have some pass ... words that use the BCryptPasswordHasher hasher. You can check if that's the case like this ... rds to be used, you'll have to define the PASSWORD_HASHERS setting (if you don't already) and include 'djang ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
Django 1.7.3 release notes — Django 4.0.6 ドキュメント 8012
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he default iteration count for the PBKDF2 password hasher has been increased by 25%. This part of the normal ... fect users who have subclassed django.contrib.auth.hashers.PBKDF2PasswordHasher to change the default value. ...
https://man.plustar.jp/django/releases/1.7.3.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 7927
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he default iteration count for the PBKDF2 password hasher has been increased by 25%. This backwards compatib ... fect users who have subclassed django.contrib.auth.hashers.PBKDF2PasswordHasher to change the default value. ... heck, this check is removed. デフォルトの PASSWORD_HASHERS 設定からの脆弱なパスワードハッシュ生成器の削除 ¶ ... るため、以下のハッシュ生成器をデフォルトの PASSWORD_HASHERS 設定から削除しました。 'django.contrib.auth.hashe ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 7635
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e default PBKDF2 iterations in django.contrib.auth.hashers.PBKDF2PasswordHasher by about 20% (pick a round n ... umber). Run the tests, and update the 3 failing hasher tests with the new values. Make sure this gets not ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
PREV 1 2 NEXT