From patchwork Wed Apr 8 07:55:38 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kate Hsuan X-Patchwork-Id: 26499 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 D1CDEBDCBD for ; Wed, 8 Apr 2026 07:56:32 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 7D57962DA6; Wed, 8 Apr 2026 09:56:32 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.b="JAD1l8Eo"; 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 EBBEC62DA6 for ; Wed, 8 Apr 2026 09:56:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1775634990; 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=GN9YNhagA0eufDqZjOfuC2jD3MT8RxrtcGF8nUE1pAQ=; b=JAD1l8EoprrCLaCZmhfemLYKc2RFWy9SMpyLGJA3RmIyCbTIyRewHzURq6RKidD/+S/cSZ 2w+I3r8/X2JCARN6hxPyK5fc+U9fGGOci3XPpH3zZFLH5YigVVT9kIKbIfrRgp0G0KmM8C hTLzini6+z5ge3Nsx3JDPr4ACfY3a3M= 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-295-c8ILyD7dO8-QOrm4tARL5A-1; Wed, 08 Apr 2026 03:56:28 -0400 X-MC-Unique: c8ILyD7dO8-QOrm4tARL5A-1 X-Mimecast-MFC-AGG-ID: c8ILyD7dO8-QOrm4tARL5A_1775634987 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 CD8DE18005B6 for ; Wed, 8 Apr 2026 07:56:27 +0000 (UTC) Received: from fedora.redhat.com (unknown [10.67.32.15]) by mx-prod-int-01.mail-002.prod.us-west-2.aws.redhat.com (Postfix) with ESMTP id 1DD58300019F; Wed, 8 Apr 2026 07:56:25 +0000 (UTC) From: Kate Hsuan To: libcamera-devel@lists.libcamera.org Cc: Kate Hsuan Subject: [PATCH 2/4] utils: codegen: gen-ipa-pub-key: replace openssl rsa with openssl pkey Date: Wed, 8 Apr 2026 15:55:38 +0800 Message-ID: <20260408075540.53309-3-hpa@redhat.com> In-Reply-To: <20260408075540.53309-1-hpa@redhat.com> References: <20260408075540.53309-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: Ps-RVIv3I041WRcvprFFtK-PcSdf1rLF-9goz0vT6aQ_1775634987 X-Mimecast-Originator: redhat.com content-type: text/plain; charset="US-ASCII"; x-default=true 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" The command "openssl ras" was replaced with "openssl pkey" to cover different key algorithms. Signed-off-by: Kate Hsuan --- utils/codegen/gen-ipa-pub-key.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/codegen/gen-ipa-pub-key.py b/utils/codegen/gen-ipa-pub-key.py index dc3e7d5f..9854c0c2 100755 --- a/utils/codegen/gen-ipa-pub-key.py +++ b/utils/codegen/gen-ipa-pub-key.py @@ -21,7 +21,7 @@ def main(argv): output = argv[3] try: - ret = subprocess.run(['openssl', 'rsa', '-pubout', '-in', priv_key, + ret = subprocess.run(['openssl', 'pkey', '-pubout', '-in', priv_key, '-outform', 'DER'], stdout=subprocess.PIPE) except FileNotFoundError: