Two simple encryption/archive plugins I'm happy to share... #1567
Replies: 4 comments 3 replies
-
👍 @N-R-K and @luukvbaal could you please evaluate? |
Beta Was this translation helpful? Give feedback.
-
I like the idea. Here are some observations I have:
|
Beta Was this translation helpful? Give feedback.
-
@KlzXS Many thanks for your prompt review and evaluation. On each point...
Which brings me to a (very quick) trial run of FWIW, I didn't seem to be able to apply Thanks again for your insightful comments. I will definitely spend more time on this in the near future. 🖖 |
Beta Was this translation helpful? Give feedback.
-
Nice to see someone try to implement archive plugin for public use. https://github.com/amalgame21/conifg/blob/main/archive_tar
To decrypt and extract |
Beta Was this translation helpful? Give feedback.
-
I wrote two simple bash scripts for my own use and posted them publicly to share:
https://github.com/ArchieLinux/nnn-plugs
In short, "
arcenc
" and "arcdec
" are a pair of simple scripts to (1) compress/encrypt and (2) decompress/decrypt, respectively, a file or directory for safe private archiving, emailing as an attachment, etc.They both use
tar
andgpg
in series, providing excellent compression & robust encryption. As such, these are the two dependencies of which I'm aware. Leveraging thegpg
"silence" feature, passwords are not echo'ed to avoid potential leakage of encryption keys.Being a big fan of
nnn
, I wanted to be able to accomplish this through thennn
file manager - and in turn thought others might enjoy them, too. Of course, they can also be run as external CLI bash scripts. As far as I know, they are POSIX compliant - on my best efforts basis.I would be honored to have them included in the nnn library of plugins under The Open Unlicense.
Beta Was this translation helpful? Give feedback.
All reactions