1---2title: 'Password Safe'3date: '2008-07-08'4published_at: '2008-07-08T12:48:00.003+10:00'5tags: ['crypto', 'open source', 'passwords', 'security']6author: 'Gavin Jackson'7excerpt: 'I hate managing passwords - so I''ve started using a program called "password safe" to manage my passwords electronically. It essentially encrypts all of your passwords into a single database file (usi...'8updated_at: '2008-07-08T12:54:50.765+10:00'9legacy_url: 'http://www.gavinj.net/2008/07/password-safe.html'10---1112I hate managing passwords - so I've started using a program called "password safe" to manage my passwords electronically. It essentially encrypts all of your passwords into a single database file (using the twofish encryption algorithm). Note that all of these implementations are compatible with the same password safe database file (which you can store on your usb key for example). Just pick a really strong passphrase to protect your database! Original implementation (written by Bruce Schnier):1314[http://www.schneier.com/passsafe.html](http://www.schneier.com/passsafe.html)1516Sourceforge project (windows implementation):1718[http://passwordsafe.sourceforge.net/](http://passwordsafe.sourceforge.net/)1920Password Gorilla (OSX/cross platform implementation):2122[http://www.fpx.de/fp/Software/Gorilla/](http://www.fpx.de/fp/Software/Gorilla/)2324Java implementation (another cross platform implementation - not tested):2526[http://www.bytecode.com.au/passwordsafeswt/](http://www.bytecode.com.au/passwordsafeswt/)272829