Jakk - Just a Key Keeper
by Patrick MARIE <mycroft@virgaria.org>

Jakk is only a login/password/description crypted db(3), to keep some 
passwords.

It'll create a ~/.key.db file default, and you'll only be able to read it
by using jakk.

COMPILING:

[~/dev/jakk] (14) % make
gcc -Wall -Werror -O2 -ansi -pedantic -c crypto_api.c
...
cc: -lreadline: linker input file unused because linking not done
cc -g -O2 -Wall -Werror -D_PATH_DATABASE="\"/home/mycroft/.key.db\"" -lreadline -o jakk jakk.o capi/*.o
[~/dev/jakk] (15) % ./jakk
last rec num is 13
Please input your private key.
password:
Verification.
password: 
Setting 256 bits key ...
jakk# help
Help of jakk

usekey    -  define new key
list      -  list all index keys
get X     -  get record number X
del X     -  del record number X
search X  -  search record with patter X
add       -  add record
exit      -  exit jakk

jakk# add 
IndexName: This is a test :)
Description: Yeah !
PassWord: testtest.
jakk# search test
14/  This is a test :)
Yeah !
Key: [testtest.]
jakk# list
...
14/  This is a test :)
jakk# get 14
14/  This is a test :)
Yeah !
Key: [testtest.]
jakk# del 14
Record deleted.
jakk# exit

End of jakk.

 


 

