aboutsummaryrefslogtreecommitdiff
path: root/share/keyringer/ssss-split
blob: e414f0f2ccb914be149e14164dd9766b33318d66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
#
# Encrypt files to multiple recipients using SSSS.
#

# Load functions
LIB="`dirname $0`/../../lib/keyringer/functions"
source "$LIB" || exit 1

# Check requirements
ssss="`which ssss`";
if [ "$?" != "0" ]; then
  echo "Please install ssss first."
  exit 1
fi

# TODO