Overview
Comment: | Added README |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
47680a1e169f8b918e0a789b2ab816a2 |
User & Date: | rkeene on 2016-03-11 21:45:30 |
Other Links: | manifest | tags |
Context
2016-03-15
| ||
18:28 | Added verification system so that passwords are only updated if they currently contain a valid password check-in: d12f13c977 user: rkeene tags: trunk | |
2016-03-11
| ||
21:45 | Added README check-in: 47680a1e16 user: rkeene tags: trunk | |
21:41 | Added release engineering scripts check-in: d9d859322c user: rkeene tags: trunk | |
Changes
Added HEADER version [9cc3c39871].
> > > > > > > > | 1 2 3 4 5 6 7 8 | @@UTIL@@ @@VERS@@ Release information: pkg: @@UTIL@@ version @@VERS@@ url: http://www.rkeene.org/devel/@@UTIL@@-@@VERS@@.tar.gz date: @@DATE@@ -------------------------------------------------------------------------- |
Added README.md version [14fa5b7da1].
> > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | All I see are stars =================== About ----- The "hunter2" password manager is a simple script-oriented password manager. You request that passwords be stored by a given identifier and then later retrieve them with that identifier. Passwords are encrypted using your public RSA key and can be decrypted with your private RSA key. Currently only keys stored on hardware security modules (such as smartcards, TPMs, etc) are supported. Passwords may be shared among users of the same database and anyone who can decrypt the password may add additional users be able to access the password. Passwords are stored in a simple SQLite3 DB. AES-128 is used to encrypt the passwords and RSA is used to encrypt the AES key. Demo ---- <script type="text/javascript" src="https://asciinema.org/a/39190.js" id="asciicast-39190" async></script> |
Modified build/makearch.info from [c64d975306] to [33145011bf].
︙ | ︙ | |||
20 21 22 23 24 25 26 | # Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | # Space sperated list of documents, if they exist, they will be # prefixed with the contents of the DOC_HDR file and substitution # will occur: # @@UTIL@@ becomes the utility name ${UTIL} # @@VERS@@ becomes the utility version # @@DATE@@ becomes the current date DOCS="README.md" DOC_HDR="HEADER" # These files follow the same convention as DOCS, but don't have the header # tacked onto them. UPDATE_VARS="" # This script is executed immediately after copying the files |
︙ | ︙ |