diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-02-03 14:53:29 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-02-03 14:53:29 +0000 |
commit | 5c22526225994d0ffda69774d38c503ac9ea5ffb (patch) | |
tree | d9947f49646d612b2f8afc877af98a76cf43fc0f /config | |
parent | 0feffd76c76b6e1481a0fc0dc469eddb20229625 (diff) | |
download | gpg-5c22526225994d0ffda69774d38c503ac9ea5ffb.tar gpg-5c22526225994d0ffda69774d38c503ac9ea5ffb.tar.gz gpg-5c22526225994d0ffda69774d38c503ac9ea5ffb.tar.bz2 gpg-5c22526225994d0ffda69774d38c503ac9ea5ffb.tar.xz gpg-5c22526225994d0ffda69774d38c503ac9ea5ffb.zip |
add config file and script to split passphrase using ssss-split
Diffstat (limited to 'config')
-rw-r--r-- | config | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +GPGHOMEDIR="./homedir" +PUBDIR="./public" +PRIVDIR="./private" +INPUTDIR="./input" + +pubkey="$PUBDIR/mageia-board-pubkey.gpg" +seckey="$PRIVDIR/mageia-board-seckey" +seckey_e="$PRIVDIR/mageia-board-seckey.gpg" +passphrase="$PRIVDIR/passphrase" + +ssplit="./bin/ssss-split" +scombine="./bin/sss-combine" +partsdir="$PRIVDIR/parts" +nb_threshold=3 +nb_shares=6 + |