https://github.com/chreekat/passhole
A hole for your passwords
https://github.com/chreekat/passhole
holes passwords
Last synced: about 1 month ago
JSON representation
A hole for your passwords
- Host: GitHub
- URL: https://github.com/chreekat/passhole
- Owner: chreekat
- License: gpl-3.0
- Created: 2017-02-02T22:29:16.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-01-13T11:02:27.000Z (over 3 years ago)
- Last Synced: 2025-01-31T15:36:14.485Z (3 months ago)
- Topics: holes, passwords
- Language: Vim script
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# A hole for your passwords: your passhole
Based on incredibly complex schemes for safely editing gpg-encrypted files in
vim, this just does the simplest thing that possibly (occasionally) works.1. Define a filetype **.hole* for passwords
1. Disallows writing any data or metadata out to disk
2. Hardcodes which PGP key to use for crypto (lol)
3. Assumes you use gpg-agent or similar to avoid using the tty for passphrase
entryIn order to write your files, you must specify your recipients (your selves,
generally speaking) in the List g:passhole_recipients.```vim
" in file ~/.vim/after/plugin/passhole.vim, or whatever floats your boat
let g:passhole_recipients = ["0xdeadbeef"]
```\