php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #35564 Hash Translation
Submitted: 2005-12-06 05:52 UTC Modified: 2005-12-06 15:52 UTC
From: jsgoupil@php.net Assigned: pollita (profile)
Status: Closed Package: Documentation problem
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
 [2005-12-06 05:52 UTC] jsgoupil@php.net
Description:
------------
Currently translating Hash Functions and I have some questions and I found some "bugs" also

hash-file.xml, hash-final.xml, hash-hmac-file.xml, hash.xml...
Default value (&false;) outpus lowercase hexits.

outpus => outputs
AND what hexits means ???


hash-final.xml
Finalize an incremental hash and return desulting digest

desulting ? resulting ? or what this means ?


In hash-update.xml
What "Pump" really means in that context ?


In seealso section, I think "Or" word is no longer useful


Thank you


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-12-06 15:52 UTC] vrana@php.net
This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation better.

Hexits are hex digits.

hash_update() functions let you do incremental hashing:

context-0 + data1 -> context-1
context-1 + data2 -> context-2
...

See example by hash_init().
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon Apr 29 19:01:30 2024 UTC