/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-keygen

  • Committer: Teddy Hogeborn
  • Date: 2008-09-06 17:24:58 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080906172458-2x5wlfkn7oqckt1y
* legalnotice.xml: Copy DocBook 4.4-formatted text from
                   <http://www.gnu.org/licenses/gpl-3.0.dbk>.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
KEYLENGTH=2048
28
28
SUBKEYTYPE=ELG-E
29
29
SUBKEYLENGTH=2048
30
 
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
 
30
KEYNAME="`hostname --fqdn`"
31
31
KEYEMAIL=""
32
32
KEYCOMMENT="Mandos client key"
33
33
KEYEXPIRE=0
35
35
KEYCOMMENT_ORIG="$KEYCOMMENT"
36
36
mode=keygen
37
37
 
38
 
if [ ! -d "$KEYDIR" ]; then
39
 
    KEYDIR="/etc/mandos/keys"
40
 
fi
41
 
 
42
38
# Parse options
43
 
TEMP=`getopt --options vhpF:d:t:l:s:L:n:e:c:x:f \
44
 
    --longoptions version,help,password,passfile:,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
 
39
TEMP=`getopt --options vhd:t:l:n:e:c:x:f \
 
40
    --longoptions version,help,password,dir:,type:,length:,subtype:,sublength:,name:,email:,comment:,expire:,force \
45
41
    --name "$0" -- "$@"`
46
42
 
47
43
help(){
53
49
       $basename [ OPTIONS ]
54
50
   Encrypted password creation:
55
51
       $basename { -p | --password } [ --name NAME ] [ --dir DIR]
56
 
       $basename { -F | --passfile } FILE [ --name NAME ] [ --dir DIR]
57
52
 
58
53
Key creation options:
59
54
  -v, --version         Show program's version number and exit
75
70
  -x TIME, --expire TIME
76
71
                        Key expire time.  Default is no expiration.
77
72
                        See gpg(1) for syntax.
78
 
  -f, --force           Force overwriting old key files.
 
73
  -f, --force           Force overwriting old keys.
79
74
 
80
75
Password creation options:
81
 
  -p, --password        Create an encrypted password using the key in
82
 
                        the key directory.  All options other than
83
 
                        --dir and --name are ignored.
84
 
  -F FILE, --passfile FILE
85
 
                        Encrypt a password from FILE using the key in
 
76
  -p, --password        Create an encrypted password using the keys in
86
77
                        the key directory.  All options other than
87
78
                        --dir and --name are ignored.
88
79
EOF
92
83
while :; do
93
84
    case "$1" in
94
85
        -p|--password) mode=password; shift;;
95
 
        -F|--passfile) mode=password; PASSFILE="$2"; shift 2;;
96
86
        -d|--dir) KEYDIR="$2"; shift 2;;
97
87
        -t|--type) KEYTYPE="$2"; shift 2;;
98
88
        -s|--subtype) SUBKEYTYPE="$2"; shift 2;;
241
231
        FILECOMMENT="$FILECOMMENT <$KEYEMAIL>"
242
232
    fi
243
233
    
244
 
    # Export key from key rings to key files
 
234
    # Export keys from key rings to key files
245
235
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
246
236
        --homedir "$RINGDIR" --armor --export-options export-minimal \
247
237
        --comment "$FILECOMMENT" --output "$SECKEYFILE" \
252
242
fi
253
243
 
254
244
if [ "$mode" = password ]; then
255
 
    # Import key into temporary key rings
 
245
    # Import keys into temporary key rings
256
246
    gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
257
247
        --homedir "$RINGDIR" --trust-model always --armor \
258
248
        --import "$SECKEYFILE"
271
261
    
272
262
    FILECOMMENT="Encrypted password for a Mandos client"
273
263
    
274
 
    if [ -n "$PASSFILE" ]; then
275
 
        cat "$PASSFILE"
276
 
    else
277
 
        stty -echo
278
 
        echo -n "Enter passphrase: " >&2
279
 
        first="$(head --lines=1 | tr --delete '\n')"
280
 
        echo -n -e "\nRepeat passphrase: " >&2
281
 
        second="$(head --lines=1 | tr --delete '\n')"
282
 
        echo >&2
283
 
        stty echo
284
 
        if [ "$first" != "$second" ]; then
285
 
            echo -e "Passphrase mismatch" >&2
286
 
            false
287
 
        else
288
 
            echo -n "$first"
289
 
        fi
290
 
    fi | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
 
264
    stty -echo
 
265
    echo -n "Enter passphrase: " >&2
 
266
    head --lines=1 | tr --delete '\n' \
 
267
        | gpg --quiet --batch --no-tty --no-options --enable-dsa2 \
291
268
        --homedir "$RINGDIR" --trust-model always --armor --encrypt \
292
269
        --recipient "$FINGERPRINT" --comment "$FILECOMMENT" \
293
270
        > "$SECFILE"
294
 
    status="${PIPESTATUS[0]}"
295
 
    if [ "$status" -ne 0 ]; then
296
 
        exit "$status"
297
 
    fi
 
271
    echo >&2
 
272
    stty echo
298
273
    
299
274
    cat <<-EOF
300
275
        [$KEYNAME]
301
276
        host = $KEYNAME
302
277
        fingerprint = $FINGERPRINT
303
278
        secret =
304
 
        EOF
 
279
EOF
305
280
    sed --quiet --expression='
306
281
        /^-----BEGIN PGP MESSAGE-----$/,/^-----END PGP MESSAGE-----$/{
307
282
            /^$/,${