Summary
TinyPasswordManager is an application that allows you to manage all of your accounts. Written in C++, TinyPasswordManager is using AES-256 to cipher the database. The AES private key is the result of the SHA-256 function of your password.
Compilation
GNU/Linux (Debian)
# apt-get instal libqt4-dev
$ svn checkout http://tinypasswordmanager.googlecode.com/svn/trunk/ tinypasswordmanager-read-only
$ cd tinypasswordmanager-read-only
$ qmake
$ make
Windows
Download and install Free Qt4 SDK here : http://qt.nokia.com/downloads
QT4 Compilation
C:\Qt\2009.04\qt> configure -static -release -stl -opensource
With Visual Studio :
C:\Qt\2009.04\qt> vcvarsall
C:\Qt\2009.04\qt> nmake
With Mingw :
C:\Qt\2009.04\qt> make
TinyPasswordManager Compilation
$ svn checkout http://tinypasswordmanager.googlecode.com/svn/trunk/ tinypasswordmanager-read-only
$ cd tinypasswordmanager-read-only
$ qmake
With Visual Studio :
$ vcvarsall
$ nmake
With Mingw :
$ make
Screenshot