Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:91789 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 13864 invoked from network); 20 Mar 2016 19:50:45 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 20 Mar 2016 19:50:45 -0000 Authentication-Results: pb1.pair.com smtp.mail=jakub.php@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=jakub.php@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.213.41 as permitted sender) X-PHP-List-Original-Sender: jakub.php@gmail.com X-Host-Fingerprint: 209.85.213.41 mail-vk0-f41.google.com Received: from [209.85.213.41] ([209.85.213.41:36263] helo=mail-vk0-f41.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 7A/B6-48999-41FFEE65 for ; Sun, 20 Mar 2016 14:50:44 -0500 Received: by mail-vk0-f41.google.com with SMTP id q138so103036860vkb.3 for ; Sun, 20 Mar 2016 12:50:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to; bh=V2D3OFBTKn7IO4nE4dirtPC2FHmxWFbLxhVo6Gwm5Po=; b=qT9YFGIpeE0VHRlu8Ah1vNiQ/a0R9U1N5AK1JpC/KzoYHZ9I3NcCShJARRbjxT0e8e EDuq902zfHtSLEBQVRlhIr4GyPPoZeZ9oMk7DYBphOUqoYpCBuXlGse29zFOFNtDrSY3 4Z3OuGYZEOf/qMuhiX+252J+9wCIfllI4x5wVZPv5F87rGyPLQoWEefXOVgqI30bIAEJ 6WnK84QeMdCM1yta5b7OAZfqpF8umuTHARDxlj0xEEtick4dnbA59vv4zDnmrJKouL9C OFgP7kIojBHe/y+3SEpFnMKRL66amLt72g4pdgfAfd0ZCf7IgANIVytSaUciUKUBMbSO dcPg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:date:message-id:subject:from :to; bh=V2D3OFBTKn7IO4nE4dirtPC2FHmxWFbLxhVo6Gwm5Po=; b=FKmKVCnVYrnke/hecL6KKNZx+CpgFxhMEx+D33uctkzmuA/6jxFQARb17aWbcgnNTd Osj7033u9vzAplMzcU521+9FOZ2VgU+Hnswqx11L3PDUBhLXQlcqYssV9FaO9kZBIR8T oWHYA5Cc8eQl1CTJN8dZ8RRu5JPyyiZnFqqUxYVNMXAeFymH7uvxobohR9exSRJYPb7U O+RjjFW7Tn8h13EFNVYj/HB12YZ2oh+xPoPmxz76GcT1OILZm5ROAGlBy8/sku7+UlGr gcPrwOF0Mwt0ZqCelZr8MGtPSXguEEGBH1rzJYG3zoVN3bN87n/wWd/JhlbW9Ihe783g Q1tw== X-Gm-Message-State: AD7BkJI1pHBn3AiMuw/VpHtwWL3ZMIifWhSf0K+RhGP2fjpIWNQz8KeZYfh67WA4ru9sP8OuDjboH56ONZNVMQ== MIME-Version: 1.0 X-Received: by 10.31.5.134 with SMTP id 128mr28588677vkf.29.1458503440812; Sun, 20 Mar 2016 12:50:40 -0700 (PDT) Sender: jakub.php@gmail.com Received: by 10.31.69.70 with HTTP; Sun, 20 Mar 2016 12:50:40 -0700 (PDT) Date: Sun, 20 Mar 2016 19:50:40 +0000 X-Google-Sender-Auth: M6SZYaCcpE6ZURRc7ucLvysGzlc Message-ID: To: PHP internals list Content-Type: multipart/alternative; boundary=001a114415f47e50d8052e804bcf Subject: OpenSSL ext status including port to OpenSSL 1.1 From: bukka@php.net (Jakub Zelenka) --001a114415f47e50d8052e804bcf Content-Type: text/plain; charset=UTF-8 Hi, I just wanted to send a quick update about my recent work on openssl ext in case someone else wanted to start something similar so we don't have a wasted effort on that. :) 1. Error queueing I'm more or less done with a patch for error storing and clearing OpenSSL error queue: https://github.com/php/php-src/compare/PHP-7.0...bukka:openssl_error_store I have been slowly working on a more complete test for openssl_error_string that will cover most real error cases. There is still quite a lot of work that I need to do but the incomplete test can be seen here: https://github.com/bukka/php-util/blob/master/tests/openssl/openssl_error_string_basic.phpt The idea is that I would like to create a PR against 7.0 after I'm happy with that test so it can be tested by others and then merged. Then I plan to merge the AEAD work that is complete but overlaps slightly with this one so I want to merge it after that... 2. OpenSSL 1.1 port I have got a port of the extension to work on OpenSSL 1.1. There has been quite a bit of changes mainly due to the fact that most structures are now opaque (but also some other changes) https://github.com/bukka/php-src/compare/openssl_aead...bukka:openssl_1_1_port It compiles fine and most tests pass. At the moment I have got just 3 tests failing that I need to take a look later. But it's welcomed if anyone wants to take a look and analyse them before I have got the time to look into them ;). I have got a list that includes some other changes that I need to verify later: https://github.com/bukka/php-util/blob/master/tests/openssl/port_1_1_issues.txt Cheers Jakub --001a114415f47e50d8052e804bcf--