Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124693 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id 9AACF1A00B7 for ; Tue, 30 Jul 2024 20:26:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722371281; bh=T3eBSPkxgWarf1F5ZonEn4uiXa7W2Ahn9YeGpj55HGo=; h=Date:Subject:To:References:From:In-Reply-To:From; b=Jd6HtBZuK52r5Umyms+f5SeM/WnMS81mu23PhzoqHsHlZKIECdXBTt7+nJUJNno4j k1PXglMoNdVnd7m/8LJK1VJAwpakzt23kqARb1/5FxT8USC1bOaGTpqHC3NOPdTUO9 KBhG/b5IT7cQEsXekeRM3suuW2qoggOtZPyBOy/dQpRTW/nCzRZSXsQqpeAJ3i9rm4 0Zig1fh2D1MwWTCZfXWn5X+IM0E/lNjFWd87gVzA/fmSFltJQubXMUZikpKLXpR5ew RSlGB76nCtUFaxgD6i08iSWScrmL49RM9KfGYABhLznROarJ+JGgvjp7WDOm+LIf99 ld02AI1toH6fg== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 7347118003A for ; Tue, 30 Jul 2024 20:28:00 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Tue, 30 Jul 2024 20:27:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1722371180; bh=vWCOm3FauWcwRENYkrG/K+0sQfT22IG+h4XGL0idYQc=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type:from:to:cc:subject:message-id; b=Q01zxT1mxwReE6MeDqGYEO3goHu484BlJikoRfqRKkvN4tb4+pQKSDmC0mGai4xis Dw0Ew8GMdO/CbIhRx7CQh/kuPlizNi+hLmY3+DKPCn/cyJTERnMQN7ymbJiIXYzoip HtaZajgtQI3rhum1SiirZ6SBdqZQNb0YfpzrCV7MtZ2fVlbaKNDZYfoWeVAFIt+zr8 3eCQdFX7hhgfcRKo9CXCJvZJcI+n8FWna7X02xUUb+B4Tufq7Jx6EM4lrXzyvHlzYY jKYXw0Nzki0Hr3o/Zd7GKrcinZ3r02Y/oyVA9sFmwG48Js0KA0gkbKqFIcI7HVuOXU fG5tk6mP3ABhQ== Message-ID: <2244a37f-8c51-448d-8a56-329ff32e6470@bastelstu.be> Date: Tue, 30 Jul 2024 22:26:19 +0200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 Subject: Re: [PHP-DEV] [RFC] [VOTE] Deprecations for PHP 8.4 To: Rob Landers , internals@lists.php.net References: <1a88918e-e808-d778-45e1-53797660e093@php.net> <3563cf9b-8eab-4c82-b525-a5d2f9a767bb@varteg.nz> <38920A4B-790D-48C7-B2F6-C49D3F506232@rwec.co.uk> <0824789d-0e36-4628-85c1-4b8d9b7f86af@varteg.nz> Content-Language: en-US In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi On 7/28/24 00:25, Rob Landers wrote: > I'd love to see a "hashing" namespace and all of these given their own functions with docblocks and manual pages instead of the current generic "god of hash" page which doesn't even list the hash functions available; you have to click on hash_algos and then look at the var_dump of hash algorithms. From there, you can google each one and try to understand what each one is good at and why you would use murmur3a over murmer3f, then try to figure out which one is the version that is compatible with javascript but not compatible with c# or maybe the other way around... (I recently got to go on that ride). The problem with adding standalone functions for every algorithm is that it would result in a combinatorial explosion of available functions. Unless we want to make some of them "second class citizens" with reduced functionality or generally want to remove everything except for incremental hashing, we would need the following for each of them (with hash standing for the algorithm): - hash() - hash_hmac() - hash_file() - hash_init() - hash_hmac_init() - hash_update() (could also be a method) - hash_update_file() (could also be a method) - hash_update_stream() (could also be a method) - hash_final() (could also be a method) - hash_hkdf() - hash_pbkdf2() That clearly does not scale. See also my previous reply to Rowan regarding the documentation. It's clearly a topic for the farer future, but if / When tagged unions [1] make it in the language, I plan to propose an update allowing to pass an algorithm enum, including all the necessary options to the hash functions. This would make the algorithms more discoverable, easier to independently document and remove the footgun of needing to provide a matching untyped options array (which incidentally is also listed in the deprecation RFC as a footgun). [1] https://wiki.php.net/rfc/tagged_unions I'd also like to note that providing the hash algorithms by a generic interface is not particularly unusual. Here's two examples: - node.js: https://nodejs.org/api/crypto.html#class-hash - Python: https://docs.python.org/3/library/hashlib.html (which also takes a named constructor, which would be reasonably similar to my tagged-union proposal above). Other languages, such as Ruby or Golang, appear to use a Hash interface with appropriate methods, but I am not sure if this is a good fit for PHP given the way the documentation is structured, with a dedicated page for each and every function or method, and the fact that PHP does not provide for extension methods, which would require implementing the convenience functionality for each algorithm separately - or as standalone functions. Best regards Tim Düsterhus