Text obfuscation or ciphering (not true encryption)

Any other tech-related topics
Post Reply

Which sounds better

Shut down after use:
1
50%
Remain ready in the system tray:
1
50%
 
Total votes: 2

Message
Author
User avatar
dmg
Posts: 325
Joined: Fri Jun 04, 2010 2:11 am
Contact:

Text obfuscation or ciphering (not true encryption)

#1 Post by dmg »

So, I have been fiddling for quite a while with writing a text cipher app. This app would be a clumsy implementation of cascade ciphering:
http://en.wikipedia.org/wiki/Multiple_encryption
Basically, it would take plain text and process it through multiple distinct ciphers to make the final product more difficult to decipher. The intent is be a toy with some limited real world applications. NOT TO BE CONFUSED WITH ACTUAL ENCRYPTION.

I have a question: assuming a gui in which the plain text and a pass phrase would be entered, and which would then present the enciphered text, would it be better to have the app close after it finishes or does it sound like the kind of thing that might be best left running and ready for use in the system tray?

User avatar
tproli
Posts: 1172
Joined: Sat Sep 09, 2006 10:14 am
Location: Hungary
Contact:

Re: Text obfuscation or ciphering (not true encryption)

#2 Post by tproli »

In the gui you can add minimize/close buttons, can't you? So let the user decide.

User avatar
webfork
Posts: 10823
Joined: Wed Apr 11, 2007 8:06 pm
Location: US, Texas
Contact:

Re: Text obfuscation or ciphering (not true encryption)

#3 Post by webfork »

tproli wrote:In the gui you can add minimize/close buttons, can't you? So let the user decide.
Agreed. Me personally, I like keeping it available and in the system tray (I think WinPT had this) so I'd recommend that present by default.

Post Reply