This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Lib/urllib/request.py: digest algorithm should be case insensitive
Type: behavior Stage:
Components: Library (Lib) Versions: Python 3.10, Python 3.9, Python 3.8, Python 3.7, Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Pierre.Tardy
Priority: normal Keywords:

Created on 2021-01-05 15:35 by Pierre.Tardy, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 24122 open Pierre.Tardy, 2021-01-05 16:00
Messages (1)
msg384409 - (view) Author: Pierre Tardy (Pierre.Tardy) * Date: 2021-01-05 15:35
original bug report: https://github.com/buildbot/buildbot/issues/5743

Twisted by default advertises its algorithm in lowercase, which is uncommon, but allowed by the spec.

https://tools.ietf.org/html/rfc3230#section-4.1.1


python's request.py is only supporting MD5 or SHA as algorithm, and not lowercase equivalent.

This is an easy and harmless fix.
History
Date User Action Args
2022-04-11 14:59:39adminsetgithub: 86999
2021-01-05 16:00:08Pierre.Tardysetstatus: pending -> open
pull_requests: + pull_request22953
2021-01-05 15:35:32Pierre.Tardysetstatus: open -> pending
components: + Library (Lib)
2021-01-05 15:35:06Pierre.Tardycreate