We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An example of using Digest in a request with no payload body. There is a misconceptions that Digest does not apply to request with no payload body.
As it's not a special case #849 (comment) for sha-256 we can just use
In [120]: sha256(b'').hexdigest() Out[120]: 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855'
Other algorithms are free to define a different computation, and the examples will only be tied to sha-256
The text was updated successfully, but these errors were encountered:
Merge pull request #1155 from httpwg/ioggstream-1143-no-payload
36de8d4
Fix: #1143. Example of an empty payload body.
Successfully merging a pull request may close this issue.
I expect
An example of using Digest in a request with no payload body.
There is a misconceptions that Digest does not apply to request with no payload body.
As it's not a special case #849 (comment) for sha-256 we can just use
Other algorithms are free to define a different computation, and the examples will only be tied to sha-256
The text was updated successfully, but these errors were encountered: