• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H19-Feb-2019-17,40113,036

doc/H03-May-2022-4,1643,524

libyacurs/H19-Feb-2019-109,55582,417

m4/H19-Feb-2019-12,50311,284

po/H03-May-2022-2,8732,306

src/H19-Feb-2019-28,24719,981

tests/H19-Feb-2019-21,49717,992

ABOUT-NLSH A D19-Feb-201991.6 KiB1,2831,244

AUTHORSH A D19-Feb-2019200 149

BUGSH A D19-Feb-201980 53

COPYINGH A D19-Feb-201934.3 KiB675553

ChangeLogH A D19-Feb-2019500.2 KiB15,26411,386

INSTALLH A D19-Feb-20191.4 KiB5031

INSTALL.genericH A D19-Feb-20199.2 KiB235177

LICENSEH A D19-Feb-20191.4 KiB2822

Makefile.amH A D19-Feb-20191,022 3827

Makefile.inH A D19-Feb-201930.9 KiB974870

NEWSH A D19-Feb-20194.6 KiB143107

READMEH A D19-Feb-20191.4 KiB4833

aclocal.m4H A D19-Feb-201958.1 KiB1,6261,470

config.h.inH A D19-Feb-20197.8 KiB284196

configureH A D03-May-2022714.2 KiB23,55819,968

configure.acH A D19-Feb-20194.6 KiB164146

gettext.hH A D19-Feb-20191.1 KiB4112

intl.hH A D19-Feb-20191.7 KiB6124

yapet.desktop.inH A D19-Feb-2019326 1312

README

1// -*- adoc -*-
2= YAPET - Yet Another Password Encryption Tool 2.3
3Rafael Ostertag <rafi@guengel.ch>
4
5== Introduction
6
7YAPET is a text based password manager using the AES-256 encryption
8algorithm to store passwords and associated information encrypted on
9disk. Its primary aim is to provide a safe way to store passwords in a
10file on disk while having a small footprint, and compiling and running
11under today's most popular Unix Systems.
12
13The password records are protected by a master password which is used
14to encrypt and decrypt the password records.
15
16== Supported Platforms
17
18YAPET has been tested on following platforms:
19
20* FreeBSD
21* OpenBSD
22* NetBSD
23* Linux
24
25== Features
26
27YAPET features:
28
29* AES-256 encryption.
30* Passwords are not kept clear text in memory.
31* Locks the terminal on inactivity.
32* Utilities to convert to and from CSV format.
33* Built-in password generator.
34
35Depends only on three libraries:
36
37* http://www.openssl.org/[OpenSSL]
38* Curses or http://www.gnu.org/software/ncurses/[Ncurses]
39* https://github.com/P-H-C/phc-winner-argon2[Argon2]
40
41
42CAUTION: Although several precautions were taken to avoid having any
43  passwords stored clear text in memory, there were occasions when
44  core files contained the master password. This means that it is
45  possible, though not likely, for a malicious user to get hold of one
46  or more passwords *while* YAPET is running.
47
48