From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: master e9983b1b63: Add :pass and :flags to gnutls-boot for :keylist Date: Sat, 31 Dec 2022 09:28:30 +0200 Message-ID: <834jtc58wx.fsf@gnu.org> References: <167241835062.27962.3766135889228953493@vcs2.savannah.gnu.org> <20221230163910.F15FBC00A7F@vcs2.savannah.gnu.org> <878riol6ib.fsf@yahoo.com> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="8688"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org, nchatz314@gmail.com To: Po Lu Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sat Dec 31 08:29:07 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pBWIl-000295-Dt for ged-emacs-devel@m.gmane-mx.org; Sat, 31 Dec 2022 08:29:07 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1pBWIA-00086l-W8; Sat, 31 Dec 2022 02:28:31 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pBWI9-00086c-UU for emacs-devel@gnu.org; Sat, 31 Dec 2022 02:28:29 -0500 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pBWI9-0006O9-DN; Sat, 31 Dec 2022 02:28:29 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=pLhsfez3ZjuKAtHb1fhyMxKAE3ZNGUQRI4iV4FZOFDw=; b=mg39aS9Vm01Y QYYsRtKcGYO1OBYWP1gpJQkBsg/36PClBmYsqXLDcbLN2Rsr8YUD5iXWinSCrAEQVlgFV6qzGlcmO 1J2DBCEGuXlafgsf0FLhvWwq471a3NWVwg111YZM1hnV8reQ0J4w230V7Aohu/Xp0mG9/HuYPdCtn hWU59XnhvXswU0cp7eBdIcgEr1p1ZYTtDmh6hUCfCPEMXa4ZSw5zpTKynxRYsDeDm4Vpt1XgpZep7 fA7PXFZG3hZmTifYx/DqKHncnCmTmpA3m/ovggpuPJcZvhtuipJGV/9bpDRxTeUZbV2srhnUe1cWf NIsmhbRGbKr++boy5MNjTw==; Original-Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pBWI8-0005qf-NT; Sat, 31 Dec 2022 02:28:29 -0500 In-Reply-To: <878riol6ib.fsf@yahoo.com> (message from Po Lu on Sat, 31 Dec 2022 09:13:48 +0800) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:302150 Archived-At: > From: Po Lu > Cc: Nikolaos Chatzikonstantinou > Date: Sat, 31 Dec 2022 09:13:48 +0800 > > Robert Pluim writes: > > > branch: master > > commit e9983b1b635cbbc5402279dbbe42878902b151db > > Author: Nikolaos Chatzikonstantinou > > Commit: Robert Pluim > > > > Add :pass and :flags to gnutls-boot for :keylist > > > > * lisp/net/gnutls.el (gnutls-boot-parameters): Add the keys :pass and > > :flags, and update the documentation. > > * src/gnutls.c (gnutls-boot): Add the keys :pass and :flags, and > > update the documentation. > > (syms_of_gnutls): Add the symbols :pass, :flags, and the symbols that > > correspond to the enumeration constants of the GnuTLS enum > > `gnutls_pkcs_encrypt_flags_t'. > > (key_file2_aux): Private helper function that translates a list of > > symbols to its corresponding `unsigned int' value of the GnuTLS C enum > > `gnutls_pkcs_encrypt_flags_t'. > > This breaks the build, complaining about GNUTLS_PKCS_PBES2_GOST_TC26Z, > GNUTLS_PKCS_PBES2_GOST_CPA, GNUTLS_PKCS_PBES2_GOST_CPB, > GNUTLS_PKCS_PBES2_GOST_CPC, being undefined, among others. Should be fixed now, please test.