My favorites | Sign in
Project Home Downloads Issues Source
Project Information
Members
Featured
Downloads

Summary

TinyPasswordManager is an application that allows you to manage all the identifiers of your accounts. Written in C++, TinyPasswordManager is using AES-256 to cipher the database.

The main goal of this project is to have a password manager that is :

  • only one executable, that can be run without installation (e.g. from a USB key)
  • portable : Windows, GNU/Linux, *BSD compatible
  • secure : the identifiers are stored in a XML database ciphered with AES-256
  • fast : the minimum necessary features will be developed in order to have a light and fast graphical interface

TinyPasswordManager has dependencies with the following libraries :

  • Qt4 : QtGui and QtXml

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

Powered by Google Project Hosting