mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
10 lines
233 B
Bash
Executable File
10 lines
233 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
if [ "$#" -ne 2 ]; then
|
|
echo "Usage: $0 update_archive private_key"
|
|
exit 1
|
|
fi
|
|
openssl=/usr/bin/openssl
|
|
$openssl dgst -sha1 -binary < "$1" | $openssl dgst -dss1 -sign "$2" | $openssl enc -base64
|