Thursday, April 18, 2024
20
rated 0 times [  20] [ 0]  / answers: 1 / hits: 12946  / 3 Years ago, sat, may 15, 2021, 8:44:54

Is there an encrypting text editor for ubuntu? In other words, the text editor, preferably GUI capable, should always save an encrypted file and always prompt for the password to re-open the file. The point is to combine the functionality of a text editor with an encryption tool.


More From » software-recommendation

 Answers
6

Vi/Vim



Just use vim or vi which offers file encryption with blowfish when using -x option.



create a file for encryption as follows:



vim -x filename.txt


Then it will prompt to enter encryption key



Enter encryption key:


Once a file has been encrypted by Vim once, you never need to use the -x option when opening that file again. Vim will automatically recognize it as an encrypted file and do the right thing.



Because Blowfish is a symmetric key encryption system, the same key is used for both encryption and decryption. When Vim opens a file for the first time with the -x option, the first thing it will do is ask you to give it a key you can use to encrypt and decrypt the file, with this prompt:



Need encryption key for "abc.txt"
Enter encryption key:


After entering the key, you will then be asked to confirm the key, to ensure you did not mistype it.



Enter same key again:


Then it will open as normally as usual.



Read more here



CryptoTE



According to the website.



CryptoTE is a text editor with integrated strong cryptography. 
It is based on the popular Scintilla widget and automatically stores
text data in secure encrypted container files.
Compared to other "password keeper" programs, CryptoTE does not force
any structure upon your data: it works with plain ASCII text
and does not require you to fill in grids, key-value attributes,descriptions etc.
Encryption is transparently performed using the
highly-secure Serpent cipher. The editing interface is thoroughly
optimized for speed and ease of use.
Multiple subfiles, Quick-Find and a two-click random password generator
make daily use very convenient.


enter image description here



for ubuntu see.


[#26418] Sunday, May 16, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
fectlyole

Total Points: 64
Total Questions: 110
Total Answers: 110

Location: Nicaragua
Member since Thu, Feb 3, 2022
2 Years ago
;