Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:91856 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 32645 invoked from network); 22 Mar 2016 18:21:15 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 Mar 2016 18:21:15 -0000 Authentication-Results: pb1.pair.com smtp.mail=nikita.ppv@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=nikita.ppv@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.161.179 as permitted sender) X-PHP-List-Original-Sender: nikita.ppv@gmail.com X-Host-Fingerprint: 209.85.161.179 mail-yw0-f179.google.com Received: from [209.85.161.179] ([209.85.161.179:36453] helo=mail-yw0-f179.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DD/50-30596-91D81F65 for ; Tue, 22 Mar 2016 13:21:13 -0500 Received: by mail-yw0-f179.google.com with SMTP id g3so265418386ywa.3 for ; Tue, 22 Mar 2016 11:21:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=bPQemOC/IrvhMIYteYnz1kVJjGzfWMqILQlQdExPg5w=; b=ZP4QUtyjHYc4C6AHp+pZfpgI4RcyVBlFeR3F6z6wUOMbhKY1GWZUH8xVShcV/GHaMR xlltk/Oacqfc7BOYnPtpnbPslgyJk6A9lkUfLaYS/QbqE7RZtOGWBjrK7y9GUGjwM0gj fbaxh7dl4QuyrHgU9iZakqaECklzBvhy5MDz6px/bLS8w1sTjS/3z5D2DoxPc4u72RDb UzvzS6gFPbkdnfjTs3K8i62eiGn1OMhFKUTWmFt16tKco/xZWy1yAQBACu7VBQyFV6jo 74EJWPXwviv1XNhKVDmVKPpXP+iSj0PzeiaAdTeYIJwO7Q6dCfiBjJqR28HXMcnKGGss db1w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=bPQemOC/IrvhMIYteYnz1kVJjGzfWMqILQlQdExPg5w=; b=cEmtchkppTg1f4ic8beSu5Ed/Z7+2REybPPCllr1ThsPWa4YWnPy2TfptSQtBA/L08 Gvvh/Llu7lOaDGbUjp6q0Pf1dwV+CTQMHGtQzfIHYuy07cNyhckUJhi0Laj/qBqCJO6r rfdBT2EldyALE/4nlaTqn967ySY40YOY+OqvE8XMsJR0Hf4e0h5E4b/u3yvcWpxt+uIp 6irbsC+ZYBgmeFfDOelG22exK6zP54m2c2WIAiILoyRmH1vbshN4ELjTX+8g4RgPYtNy ILfSBo42RXepJfui9rKHUjKD1RXBwz8aJM510gKeTLSI07eZm+x9aXHzRnvZzQ31ELbP 00SQ== X-Gm-Message-State: AD7BkJImSQ1mXBnmXTg5P+2aPdthD7HvNLBhoxAWzIb6jq9i29TMlcSaQ2pzoPJ5DGeuEi8QBrOWf7uckUEYIg== MIME-Version: 1.0 X-Received: by 10.129.50.134 with SMTP id y128mr17010514ywy.305.1458670871295; Tue, 22 Mar 2016 11:21:11 -0700 (PDT) Received: by 10.129.148.70 with HTTP; Tue, 22 Mar 2016 11:21:11 -0700 (PDT) In-Reply-To: References: Date: Tue, 22 Mar 2016 19:21:11 +0100 Message-ID: To: Scott Arciszewski Cc: PHP Internals Content-Type: multipart/alternative; boundary=001a11409d1420bffb052ea747d8 Subject: Re: [PHP-DEV] [RFC][VOTE] Deprecate then Remove Mcrypt Closed (23-6) From: nikita.ppv@gmail.com (Nikita Popov) --001a11409d1420bffb052ea747d8 Content-Type: text/plain; charset=UTF-8 On Tue, Mar 22, 2016 at 6:00 PM, Scott Arciszewski wrote: > Hi all, > > https://wiki.php.net/rfc/mcrypt-viking-funeral > > The tally of closing (2016-03-22T17:00:00) is 23 Yes, 6 No. This is a 79.3% > favorable response, which exceeds the 2/3 majority by a significant margin. > > Thanks to everyone who voted or participated in this discussion. > > I've heard and respect some of the objections raised by folks who voted No, > but moving this liability out of the core into PECL as soon as possible is > not only a good move for the security of PHP applications, but now we know > it's the choice the community wants. > > As promised, I'll get the E_DEPRECATED patch written soon. > > Additionally, I will have a decrypt-only mcrypt polyfill project written > hopefully before 7.1.0-alpha but definitely before 7.1.0. This will allow > people to migrate towards something better, e.g. > openssl_encrypt()/openssl_decrypt(). > I wonder if we should retain support mcrypt_create_iv(), while dropping the rest of mcrypt. mcrypt_create_iv(), while being prefixed with mcrypt_, has absolutely nothing to do with libmcrypt, it only landed in that namespace out of convenience. Prior to PHP 7 it was probably the best source of cryptographically strong randomness in PHP. Nikita --001a11409d1420bffb052ea747d8--