Re: [Django] #26033: Add argon2 password hasher

2016-04-25 Thread Django
#26033: Add argon2 password hasher
-+-
 Reporter:  timgraham|Owner:  nobody
 Type:  New feature  |   Status:  closed
Component:  contrib.auth |  Version:  master
 Severity:  Normal   |   Resolution:  fixed
 Keywords:  1.10 | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * status:  new => closed
 * resolution:   => fixed


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.ab5ff3854e30decb759a25bc3d8644f3%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-04-25 Thread Django
#26033: Add argon2 password hasher
-+-
 Reporter:  timgraham|Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  contrib.auth |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  1.10 | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-

Comment (by Tim Graham ):

 In [changeset:"a5033dbc58d6e09d28b8abe3acda20b9c60e0b8e" a5033db]:
 {{{
 #!CommitTicketReference repository=""
 revision="a5033dbc58d6e09d28b8abe3acda20b9c60e0b8e"
 Refs #26033 -- Added password hasher support for Argon2 v1.3.

 The previous version of Argon2 uses encoded hashes of the form:
$argon2d$m=8,t=1,p=1$$

 The new version of Argon2 adds its version into the hash:
$argon2d$v=19$m=8,t=1,p=1$$

 This lets Django handle both version properly.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.a197ec144b6f2579d26a5bfeb4976e39%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-04-25 Thread Django
#26033: Add argon2 password hasher
-+-
 Reporter:  timgraham|Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  contrib.auth |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:  1.10 | Triage Stage:  Ready for
 |  checkin
Has patch:  1|  Needs documentation:  0
  Needs tests:  0|  Patch needs improvement:  0
Easy pickings:  0|UI/UX:  0
-+-
Changes (by timgraham):

 * has_patch:  0 => 1
 * stage:  Accepted => Ready for checkin


Comment:

 [https://github.com/django/django/pull/6489 PR] for Argon2 1.3 support.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.8103ec601cef59a9f44c6501fec73077%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-04-19 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:  1.10  | Triage Stage:  Accepted
Has patch:  0 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * status:  closed => new
 * keywords:   => 1.10
 * has_patch:  1 => 0
 * resolution:  fixed =>


Comment:

 As discussed on the original pull request, Bas will provide a patch for
 compatibility with argon2-cffi 16.1.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.4f477c00b2d08adb564dd14932597d62%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-04-19 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  closed
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:  fixed
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+

Comment (by Tim Graham ):

 In [changeset:"e47b52255ca8b888446ee3019416fe03a2b50735" e47b5225]:
 {{{
 #!CommitTicketReference repository=""
 revision="e47b52255ca8b888446ee3019416fe03a2b50735"
 Refs #26033 -- Temporarily pinned argon2-cffi test requirement.

 The latest version (16.1) is backwards-incompatible for Django.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.f60bf43be45ab14c804b0dba6421b650%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-03-08 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  closed
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:  fixed
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by Tim Graham ):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 In [changeset:"b4250ea04a88f6c4fdf84dc8624baa1cf3e0f568" b4250ea]:
 {{{
 #!CommitTicketReference repository=""
 revision="b4250ea04a88f6c4fdf84dc8624baa1cf3e0f568"
 Fixed #26033 -- Added Argon2 password hasher.
 }}}

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.1f9d19413be5fda4ae1696a41ab1bd29%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-03-05 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * needs_better_patch:  1 => 0


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.fb5195e8066fb643cbccf68ae2a05b25%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-02-04 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  1
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * needs_better_patch:  0 => 1


Comment:

 Left a few more comments for improvement.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.1d3f40b0c3526b66078e94b3c191a827%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-01-10 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by adrianmoisey):

 * cc: adrianmoisey (added)


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.b703e9c38a8e8e6a2ddeb9c57d062fc8%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-01-07 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * needs_docs:  1 => 0


--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.e88c8798378274aa1cf1baa79dc1729e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.


Re: [Django] #26033: Add argon2 password hasher

2016-01-05 Thread Django
#26033: Add argon2 password hasher
--+
 Reporter:  timgraham |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  contrib.auth  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Accepted
Has patch:  1 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+
Changes (by timgraham):

 * needs_docs:  0 => 1


Comment:

 Patch is missing documentation.

--
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-updates+unsubscr...@googlegroups.com.
To post to this group, send email to django-updates@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-updates/067.040a946579f5a51427b0b9c4098c3041%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.