From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4d5QCt5b6lz3341 for ; Tue, 11 Nov 2025 12:03:22 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [IPv6:2001:678:b28::25]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4d5QCl29B8z336J for ; Tue, 11 Nov 2025 12:03:15 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4d5QCk73SWz1VP; Tue, 11 Nov 2025 12:03:14 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1762862595; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=eRPXeK5GZsXztoEWfSEws49NFQt8qRvKk5ZX93kyo48=; b=ClCV1x6u/bgtaHs9yrTaJX4V8pJNAvoqeBbBcldOvW+NcDAr6+aYAZKQg9lUPGMU7+ky43 tbp3+Lbq3GW0FdDg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1762862595; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=eRPXeK5GZsXztoEWfSEws49NFQt8qRvKk5ZX93kyo48=; b=DDo9rEZrIxkUmFwlu2G6y3tKMv8BmHxfEfnzvA+5tw/rJ0+fiyxwG2H2jX2q7F53Ek3kcJ WnwyhjvA2XsdfgonNRkXJCN1f5GR8B6vIF26vuwTwL80RRybSmw0e1k9s7jTcHVGBZi7TW jxGlZ/LH7fNBK5MKT1jckJyTW2Mppf7fTro6QF+rMgeHOc6mNRRpMYfsDzN5Ql72Iuk0kZ lPf5nmHn6EGSjcFzp84lO9VALCONYv3vxYWKhxz8PgR4Qqyhx1LYDzYmwfuKqL3C9M/Utj l2mQ1K9MlEExhbz804BJwzepCgwzQzBTJe4BwLJegxWJIh3481Z2lU5rpwgVvg== From: Adolf Belka To: development@lists.ipfire.org Cc: Adolf Belka Subject: [PATCH] libxcrypt: Update to version 4.5.1 Date: Tue, 11 Nov 2025 13:03:03 +0100 Message-ID: <20251111120303.34623-7-adolf.belka@ipfire.org> In-Reply-To: <20251111120303.34623-1-adolf.belka@ipfire.org> References: <20251111120303.34623-1-adolf.belka@ipfire.org> Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit - Update from version 4.4.38 to 4.5.1 - No change to rootfile - Changelog 4.5.1 * Do not include undefined symbols in version-script. (issue #181, #213). * Fix build with clang-20+ on macOS (issue #216). 4.5.0 * Implement the sm3crypt ($sm3$) hashing algorithm (issue #188). * Implement the sm3-yescrypt ($sm3y$) hashing algorithm (issue #206). * Fix the implementation of the crypt(3) functions and the crypt_gensalt(3) functions to not overwrite the output buffer too early. (issue #209). * Fix the strcpy_or_abort() function to call abort() in -DNDEBUG builds. * Add some more testcases. * Several fixes for issues found by Coverity. Signed-off-by: Adolf Belka --- lfs/libxcrypt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/libxcrypt b/lfs/libxcrypt index 2f40385ca..6fdf996bf 100644 --- a/lfs/libxcrypt +++ b/lfs/libxcrypt @@ -24,7 +24,7 @@ include Config -VER = 4.4.38 +VER = 4.5.1 THISAPP = libxcrypt-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -47,7 +47,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 42d594fe36f61a1b5343d9fda22541b09373fe74c587537db8203f9c92120b6c73edef2e1b3d7febda14ae979845405b5fdaeb31dd2b89eedc423b0924ea7cff +$(DL_FILE)_BLAKE2 = d21b2ed29b8fdc1ca99e64651e984c859a988064d1ca7e9c87e1c808b451307c56400dd802112bbe732c71f6468b55db5847cc5e4184771baf44f9c5cad0d1dc install : $(TARGET) -- 2.51.2