summaryrefslogtreecommitdiff
path: root/src/ipa/ipa-sign.sh
blob: 69024213579b1a9bb213679f85b2bc05e7d2b5d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2020, Google Inc.
#
# Author: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
#
# Generate a signature for an IPA module

key="$1"
input="$2"
output="$3"

openssl dgst -sha256 -sign "${key}" -out "${output}" "${input}"