From patchwork Wed Jul 15 07:50:03 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Kate Hsuan X-Patchwork-Id: 27366 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id CAC8BC3301 for ; Wed, 15 Jul 2026 07:50:46 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 8E9EF66164; Wed, 15 Jul 2026 09:50:46 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.b="MTQtPIeY"; dkim-atps=neutral Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 22E0A6615B for ; Wed, 15 Jul 2026 09:50:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1784101843; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=mrjuikBaZ4K7GiF2gjyEv9YnxyKARyL4vK0ZmFfbnCc=; b=MTQtPIeYEqtu1WYkycB6vPJOTNuAUkihkVq7xD4UfZXC7KWGehhoNRIzJKLYQAXeqYFF/u nbHCUc1o6FKOF7JiHzOOwLhRfbVq8x+ahIl8nhKu2U3wsZbBnsQPHyGAlosmB1nPwDT51o h0NEYyEgSZ2Ag6qS66KfT6+A7Lwuezo= Received: from mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (ec2-35-165-154-97.us-west-2.compute.amazonaws.com [35.165.154.97]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-259-Njx4V7bbNkSgpwSMdsSPBQ-1; Wed, 15 Jul 2026 03:50:39 -0400 X-MC-Unique: Njx4V7bbNkSgpwSMdsSPBQ-1 X-Mimecast-MFC-AGG-ID: Njx4V7bbNkSgpwSMdsSPBQ_1784101838 Received: from mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com [10.30.177.4]) (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 mx-prod-mc-06.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTPS id 0F8011800576; Wed, 15 Jul 2026 07:50:38 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.67.32.131]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 01B2130001BB; Wed, 15 Jul 2026 07:50:34 +0000 (UTC) From: Kate Hsuan To: libcamera-devel@lists.libcamera.org, =?utf-8?b?QmFybmFiw6FzIFDFkWN6?= =?utf-8?q?e?= , Kieran Bingham , Laurent Pinchart Cc: Kate Hsuan Subject: [PATCH v5 3/4] ipa: ipa-sign: Sign IPA according to the signature algorithm of the key Date: Wed, 15 Jul 2026 15:50:03 +0800 Message-ID: <20260715075004.36983-4-hpa@redhat.com> In-Reply-To: <20260715075004.36983-1-hpa@redhat.com> References: <20260715075004.36983-1-hpa@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.4.1 on 10.30.177.4 X-Mimecast-Spam-Score: 0 X-Mimecast-MFC-PROC-ID: xyYmDPumVbryIUOCkk0ivSQo1j7Pm3OSxqxCJEfZ3o4_1784101838 X-Mimecast-Originator: redhat.com X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Sign IPA according to the signature algorithm of the key. Signed-off-by: Kate Hsuan Reviewed-by: Laurent Pinchart Reviewed-by: Barnabás Pőcze --- src/ipa/ipa-sign.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ipa/ipa-sign.sh b/src/ipa/ipa-sign.sh index 69024213..b7c7c47b 100755 --- a/src/ipa/ipa-sign.sh +++ b/src/ipa/ipa-sign.sh @@ -10,4 +10,4 @@ key="$1" input="$2" output="$3" -openssl dgst -sha256 -sign "${key}" -out "${output}" "${input}" +openssl pkeyutl -sign -inkey "${key}" -rawin -in "${input}" -out "${output}"