Support Forums
Notepad Plus + v2.5 [Coded by Ace] - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19)
+---- Thread: Notepad Plus + v2.5 [Coded by Ace] (/showthread.php?tid=18886)

Pages: 1 2 3 4 5 6 7 8 9 10


RE: Notepad Plus + v2.5 [Coded by Unleashed] - Black Demon - 06-06-2011

Thanks for the new download link Unleashed, and damn bro, you type a lot.
Again, thanks.


RE: Notepad Plus + v2.5 [Coded by Unleashed] - AceInfinity - 06-06-2011

No problem, I think I finally fixed all of the bugs to it now. And I even added more code to ensure any errors with the config file. using Catch ex As exception for if it finds anything it can't read in the config.ini.


RE: Notepad Plus + v2.5 [Coded by Unleashed] - Facebook Staff - 06-08-2011

Thanks for the new download link


RE: Notepad Plus + v2.5 [Coded by Unleashed] - Kousha - 06-12-2011

Thanks alot for this, appreciate it. Smile


RE: Notepad Plus + v2.5 [Coded by Unleashed] - dimitri54g - 06-13-2011

My Find text in my notepad not working :/


RE: Notepad Plus + v2.5 [Coded by Unleashed] - USN - 06-13-2011

Thanks for sharing this Unleashed Smile


RE: Notepad Plus + v2.5 [Coded by Unleashed] - Ted Bundy - 06-13-2011

Thanks for this i will surely put this to work


RE: Notepad Plus + v2.5 [Coded by Unleashed] - -Dreams - 06-14-2011

Very nice release! Thanks


RE: Notepad Plus + v2.5 [Coded by Unleashed] - AceInfinity - 06-16-2011

I have a better release with it's own file encryption system embedded in it Smile Not releasing that one here though. Only on my forum.

New Features:

Icon - Indicator for modified text
[Image: iIg3E.png]

Entire Encryption system
Easy Simple Encryption (NTFS filesystem)
Link to application directory
Link to Keys backup locaiton for Encryption passwords (Optional)
Delete original file after loading/opening a file into the editor
Smart statistics

The encrypted file keeps it's file extention by appending a file extention of a custom ".encrypted" so a file that would be "text.txt" would then become, "text_txt.encrypted" Smile You can change the file extention though, you won't be able to view the text unless you decrypt it back using the password it was encrypted with. I used an SHA512 hash with a Rijndael encryption algorythm. it takes the first 254bit data out of the 512 to create the key for your password (that you define yourself), and then an Initialized Vector which takes a bit of the remaining bit data, (128 bit) to encrypt part of the first.

Basically I converted the password string to an array which then gets converted to a byte, then we can use the SHA512 to hash that byte and we'll convert the first 256 bits of the 512 for the hashed byte value to make the password, which then gets encrypted by a bit of the remaining bytes with the IV.

I think it was a good idea to add this in, as now you can finish a text file, and encrypt it securely right after you're done. Exports for a "Key Backup" i've specified to be created in a special folder in case you forget your password.

Just one of the many new features, that I haven't released yet for others to enjoy ;)


RE: Notepad Plus + v2.5 [Coded by Unleashed] - Trustable - 06-17-2011

Very nice tutorial, I'll try it when I'm home!