
wk at gnupg
Aug 31, 2012, 12:34 AM
Post #5 of 5
(182 views)
Permalink
|
On Thu, 30 Aug 2012 16:28, mike [at] silverorange said: > Where can I find documentation that recommends not using a passphrase? > My understanding is a passphrase is important to protect private keys > in the event they are acquired: Right. However, most people asking for an easy way to convey the passphrase to gpg already have the passphrase online in some file. The usual code is a script like echo mypassphrase | gpg --passphrase-fd 0 ..... or cat myfilewiththepassphrase | gpg --passphrase-fd 0 ..... This does not give you any protection at all because an attacker has immediate access to the passphrase. Thus the suggestion is to use an empty (ie. no) passphrase. However, if the system is an attended one and the user is able to enter a passphrase, a passphrase is useful. In that case the passphrase is not stored on the system and a stolen hard disk won't be a problem (as long as a good passphrase is used). Salam-Shalom, Werner -- Die Gedanken sind frei. Ausnahmen regelt ein Bundesgesetz. _______________________________________________ Gnupg-users mailing list Gnupg-users [at] gnupg http://lists.gnupg.org/mailman/listinfo/gnupg-users
|