From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Burtzlaff Subject: Re: Re: Gmane readers - please subscribe Date: Tue, 27 Apr 2010 17:28:53 +0200 Message-ID: <20100427172853.39e82a77.andy13@gmx.net> References: <87wrvtkawl.fsf@benfinney.id.au> <87k4rtod4o.fsf@eku238261.eku.edu> <87ljc9jjqt.fsf@benfinney.id.au> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O6mid-0000k7-KQ for emacs-orgmode@gnu.org; Tue, 27 Apr 2010 11:29:03 -0400 Received: from [140.186.70.92] (port=53459 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O6mic-0000iH-5x for emacs-orgmode@gnu.org; Tue, 27 Apr 2010 11:29:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O6miX-0001Ra-U9 for emacs-orgmode@gnu.org; Tue, 27 Apr 2010 11:29:02 -0400 Received: from mail.gmx.net ([213.165.64.20]:40926) by eggs.gnu.org with smtp (Exim 4.69) (envelope-from ) id 1O6miX-0001RD-DL for emacs-orgmode@gnu.org; Tue, 27 Apr 2010 11:28:57 -0400 In-Reply-To: <87ljc9jjqt.fsf@benfinney.id.au> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Ben Finney Cc: emacs-orgmode@gnu.org On Tue, 27 Apr 2010 20:02:50 +1000 Ben Finney wrote: > [...] > For an infrequently-to-never used passphrase, one of two things is the > case: either it's unique, or it is identical to the passphrase that > accesses some other set of services for the user. > > Since it's an infrequently-to-never accessed service, it's an > unreasonable burden to expect the user to maintain unique passphrases > for every such service. If for this list, why not for every such list? An idea to generate unique passwords for different services is to take the first N characters of the hash of a string that is the concatenation of the domain name and a master password. I have a page on my site that does just that in javascript. No need to maintain anything. Frequently used passwords are stored in firefox or occasionally even in my head. The equivalent bash command I use for the orgmode list is: echo -n "lists.gnu.org" | md5sum | awk '{print substr ($1,0,7)}' Andreas