Folder Encryption | VB.Net 09-11-2015, 12:56 AM
#1
Greetings all!
I've been working up a new application and figured I would release it here for all of you that might find it usefull! If you do use this program please leave some feadback, I'd like to hear what you think, and it will encourage me to keep developing this project! And just to clarify, I did get the idea from this post: http://hackforums.net/showthread.php?tid=4888596, but I'm to lazy to convert the code, so I just made my own version with my twist on it![Smile Smile](https://sinister.ly/images/smilies/set/smile.png)
The general Idea of the program is this: You chose a folder, and the folder is encrypted and all the data is stuffed into a "Files.Encrypted" in the same directory as the program. Then after you've done that, create a decryption stub, this stub is only compatable with that "Files.Encrypted" file, they both have the same salt packed inside, and will only work with eachother. Then when you want to unpack the files, run the unpack stub, enter the password it was created with, and it will place the files like they were in the folder, inside a folder located in the same directory as the application called "Decompressed".
Some key features are:
- Recursive file searching
- All dependencies are packed into the decrypter
- MOAR ENCRYPTION!! Rijndael Open, Blowfish, Twofish, Serpent, Mars
- Minimal RAM overhead. (Writes as it reads)
- No critical information is stored inside the stub
Photos:
![[Image: XJbwp8e.png]](http://i.imgur.com/XJbwp8e.png)
![[Image: ?result=OlhifCXpq0]](http://nodistribute.com/imageresult/?result=OlhifCXpq0)
//UPDATEZIES//
Added a ton of stuff, almost completely redone, some new wicked encryption algorithms have been added in, along with a performance boost because of how I handle reading and writing files now![Smile Smile](https://sinister.ly/images/smilies/set/smile.png)
As always, it's not obfuscated, so if you realllllllllly want it, you know what to do.
https://github.com/ImVexed/ThreeCrypt
I've been working up a new application and figured I would release it here for all of you that might find it usefull! If you do use this program please leave some feadback, I'd like to hear what you think, and it will encourage me to keep developing this project! And just to clarify, I did get the idea from this post: http://hackforums.net/showthread.php?tid=4888596, but I'm to lazy to convert the code, so I just made my own version with my twist on it
![Smile Smile](https://sinister.ly/images/smilies/set/smile.png)
The general Idea of the program is this: You chose a folder, and the folder is encrypted and all the data is stuffed into a "Files.Encrypted" in the same directory as the program. Then after you've done that, create a decryption stub, this stub is only compatable with that "Files.Encrypted" file, they both have the same salt packed inside, and will only work with eachother. Then when you want to unpack the files, run the unpack stub, enter the password it was created with, and it will place the files like they were in the folder, inside a folder located in the same directory as the application called "Decompressed".
Some key features are:
- Recursive file searching
- All dependencies are packed into the decrypter
- MOAR ENCRYPTION!! Rijndael Open, Blowfish, Twofish, Serpent, Mars
- Minimal RAM overhead. (Writes as it reads)
- No critical information is stored inside the stub
Photos:
![[Image: XJbwp8e.png]](http://i.imgur.com/XJbwp8e.png)
//UPDATEZIES//
Added a ton of stuff, almost completely redone, some new wicked encryption algorithms have been added in, along with a performance boost because of how I handle reading and writing files now
![Smile Smile](https://sinister.ly/images/smilies/set/smile.png)
As always, it's not obfuscated, so if you realllllllllly want it, you know what to do.
https://github.com/ImVexed/ThreeCrypt
(This post was last modified: 09-20-2017, 01:46 AM by Killpot.)