/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: 2013-10-24 20:25:54 UTC
  • mfrom: (634 trunk)
  • mto: This revision was merged to the branch mainline in revision 635.
  • Revision ID: teddy@recompile.se-20131024202554-nb00jm6khi280lum
Merge from trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
3
3
# Mandos key generator - create a new OpenPGP key for a Mandos client
4
4
5
 
# Copyright © 2008-2012 Teddy Hogeborn
6
 
# Copyright © 2008-2012 Björn Påhlsson
 
5
# Copyright © 2008-2013 Teddy Hogeborn
 
6
# Copyright © 2008-2013 Björn Påhlsson
7
7
8
8
# This program is free software: you can redistribute it and/or modify
9
9
# it under the terms of the GNU General Public License as published by
30
30
SUBKEYLENGTH=4096
31
31
KEYNAME="`hostname --fqdn 2>/dev/null || hostname`"
32
32
KEYEMAIL=""
33
 
KEYCOMMENT="Mandos client key"
 
33
KEYCOMMENT=""
34
34
KEYEXPIRE=0
35
35
FORCE=no
36
36
KEYCOMMENT_ORIG="$KEYCOMMENT"
64
64
  -l BITS, --length BITS
65
65
                        Key length in bits.  Default is 4096.
66
66
  -s TYPE, --subtype TYPE
67
 
                        Subkey type.  Default is ELG-E.
 
67
                        Subkey type.  Default is RSA.
68
68
  -L BITS, --sublength BITS
69
69
                        Subkey length in bits.  Default is 4096.
70
70
  -n NAME, --name NAME  Name of key.  Default is the FQDN.
71
71
  -e ADDRESS, --email ADDRESS
72
72
                        Email address of key.  Default is empty.
73
73
  -c TEXT, --comment TEXT
74
 
                        Comment field for key.  The default value is
75
 
                        "Mandos client key".
 
74
                        Comment field for key.  The default is empty.
76
75
  -x TIME, --expire TIME
77
76
                        Key expire time.  Default is no expiration.
78
77
                        See gpg(1) for syntax.
204
203
    cat >"$BATCHFILE" <<-EOF
205
204
        Key-Type: $KEYTYPE
206
205
        Key-Length: $KEYLENGTH
207
 
        #Key-Usage: encrypt,sign,auth
 
206
        Key-Usage: sign,auth
208
207
        Subkey-Type: $SUBKEYTYPE
209
208
        Subkey-Length: $SUBKEYLENGTH
210
 
        #Subkey-Usage: encrypt,sign,auth
 
209
        Subkey-Usage: encrypt
211
210
        Name-Real: $KEYNAME
212
211
        $KEYCOMMENTLINE
213
212
        $KEYEMAILLINE
294
293
            cat "$PASSFILE"
295
294
        else
296
295
            tty --quiet && stty -echo
297
 
            echo -n "Enter passphrase: "
 
296
            echo -n "Enter passphrase: " >&2
298
297
            read first
299
298
            tty --quiet && echo >&2
300
 
            echo -n "Repeat passphrase: "
 
299
            echo -n "Repeat passphrase: " >&2
301
300
            read second
302
301
            if tty --quiet; then
303
302
                echo >&2