VS 2010 Encrypting And Decrypting An Executable?

May 13, 2012

I've been messing around with cryptography lately and wanted to figure a way to encrypt an exe so it's not runnable then decrypt it back to it's original state. I found a tutorial online that teaches how to do this with a text file so I figured I'd just tinker with that and try converting it for use with executables. For some reason though after I decrypt the encrypted version it doesn't run and gives me the error:^I'm running 64 bit windows but I'm pretty sure this wouldn't work on an x86 system either.

Imports System
Imports System.IO
Imports System.Security

[code].....

View 2 Replies


ADVERTISEMENT

Encrypting And Decrypting A Text?

Dec 11, 2009

There are many algorithms for encryption in internet. But i found them more complex. I want simple and powerful algorithm for encryption and decrytion of text.

View 13 Replies

Encrypting/Decrypting An Image?

Nov 22, 2011

Im a Uni student and im having probs with encrypting an image and also the contents of a folder. I have successfully encrypted and decrypted a text file using the following code below.

If anyone could take a look and advise on how to alter my code to perform the task of selecting an image or folder and encrypting it and decrypting it via a secret key that you input within a textbox,

[Code]...

View 7 Replies

Encrypting/Decrypting Files With Basic?

Jul 12, 2011

I'm writing a program in Basic where users can select a File using OpenFileDialog, then using a Dialog with two textboxes as the way to set the password to encrypt a file. I'm having trouble getting the program to require the password to open the file.

View 5 Replies

Encrypting/Decrypting From A Text File?

Sep 13, 2011

I have a program and I want to make it so you need a specific key to use it. I want to store keys in a text file and also use encrypt strings from my program to a text file.

I'm using Visual Studio 2010 Ultimate and programming in Visual Basic

View 1 Replies

VS 2010 Decrypting (text) File Failure?

Sep 6, 2010

Trying to decrypt a textfile is giving me an error: The input is not a valid Base 64-string as it contains a non-Base 64 character, more then two padding characters, or a non-white space character among the padding characters.Besides that I also get an exception while debugging: A first chance exception of type 'System.FormatException' occurred in Fenix.exe When I start the app it opens the file and tries to decrypt it. After decryption the string is send to a label, so I can read it. The codes I used:

vb.net
' encrypt the file Private Function Encrypt(ByVal strText As String, ByVal strEncrKey As String) As String Dim IV() As Byte = {&H12, &H34, &H56, &H78, &H90, &HAB, &HCD, &HEF} Try Dim bykey() As Byte = System.Text.Encoding.UTF8.GetBytes(strEncrKey) Dim InputByteArray() As Byte = System.Text.Encoding.UTF8.GetBytes(strText)

[code].....

View 5 Replies

VS 2010 - Code For Encrypting A File

Feb 26, 2012

Here is my code for encrypting a file:

Public Shared Function AESFileEncrypt(inputFilename As String, outputFilename As String) As Boolean

'Create SymmetricAlgorithm object and specify the Key and IV.
Dim AES As RijndaelManaged = New RijndaelManaged

[CODE]...........

This happens with large files. I gather that I have to use a fixed size buffer and read the file in small chunks, copying those chunks from the input to the output stream, until I reach the end of the input file.

View 11 Replies

VS 2010 Encrypting A Serialized Object Or Stream?

Mar 7, 2011

Basically, I need to transmit data across a network from point A to point B using a Binary Serialization System. I'm doing this to make sure that the system can't have outside listeners read the data being sent easily and to keep results secure and confidential.What is an easy way that I can encrypt, say, a generic object? Would it be easiest to serialize it to file, read the bytes in, encrypt the bytes, then store the bytes in a serialized structure and send that across the stream and reverse the process?

Private Function EncryptClass(ByVal obj As Object) As Byte()
Dim key() As Byte = {52, 15, 85, 150,
45, 12, 78, 120,

[code].....

View 6 Replies

Deployment :: Can An Executable Program Create An Executable File

May 17, 2012

I have a program that outputs a file. I want the user to be able to just double-click the output file and launch the program, just like Word and Excel. In Word for instance, one doesn't necessarily have to open WORD then click on File--> Open and locate another Word doc. He can just go to the folder and open the Word doc. I want to implement the exact scenario in my program.

So far I have tried creating TextFile and added it to the Resources. On FormLoading, I simply I stream-read the Resouce file, but I can't write to the Resource on FormClosing, since the Resource is ReadOnly. Also, the Resource is built & compiled so I suppose you can't add anything to it at run time.How you lunch an output file without launching the Executable program that created it?

View 1 Replies

Executable On Vista - Open The Executable It Goes To A "WindowsApplication1?

Jun 1, 2009

I have an executable that I was able to get working on all XP machines by registering all the .dll's associated with it.On Vista, however, I go through the exact same registration process but right when I open the executable it goes to a "WindowsApplication1 has stopped working" dialog. I registered the DLLs in the SysWOW64 folder. I also ran Dependency Walker which came up with IEFrame.dll as flagged, don't know if that is relevant though.

View 6 Replies

2010 - Editing .net Code Without Stopping Executable?

Apr 13, 2011

I need to be able to edit vb.net code using visual studio without stopping the debugging executable.How can I go about doing this? If it's impossible, how can I code and reload that code without stopping the executable? I know of scripting languages like Lua, but I fear the implementation of another language within the VB is unnecessary to save me the trouble of stopping the executable. The issue is that starting and stopping this executable can take a very long time, and I need to be able to edit the code quickly and frequently.

View 3 Replies

VS 2010 - How To Send Bunch Of Parameters Into Some Other Executable

Apr 19, 2011

I'm using Jmchillney's formless tray application and I want to pass some parameters into it using some other application I have. Then I want the formless tray application to do some work with these inputs. How can I pass into an executable parameters from another executable? I want to send some parameters from Application A to Application B. If app B doesn't exist I want it result in an error message the app A to display an error message. If app B does exist, it will do some work with the parameters and return a result back to app A and that's it.

View 26 Replies

VS 2010 Get Error When Open Finished Project / Executable

Aug 30, 2011

[code]When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box.

View 9 Replies

Asp.net - Decrypting ASPNET_Membership Password?

Mar 8, 2012

Let's say a create a new project consisting of form1, sized at 400x400.I add a datagridview box of say 350x350 in size.Now that looks fine when the program is run. Except if the user increases the size of the window - or even worse maximises the window on a high res screen. Now my lovely 350x350 datagridview box looks silly on the huge empty background.Is there a way to set the datagridview box to increase in size automatically as the window grows?

View 2 Replies

Self Decrypting Email Attachment?

Sep 29, 2011

I downloaded AxCrypt and encrypted a pdf file. It creates an executable that self decrypts the file if the correct password is entered. This is what I need except that I have to email this self decrypting file - and we all know that exe files get blocked. Are there any self decrypting methods out there that do not use an executable file?

View 5 Replies

VS 2008 Decrypting Vbulletin MD5?

Apr 5, 2009

I am trying to setup so a user can subscribe to my forums. When he/she does so, it puts them in the nec. group on the forum. This is all easy. Note: I am the owner of the site and the mysql db. So this isnt to decrypt them on other sites.

In short, all of my software will require a login / password to use the programs.

Now, on the mysql, the db encrypts the passwords. How would I go about decrypting it? I read somewhere that its a one way encryption. If this is the case, how does the site know if the password is right or wrong if it cant decrypt it?

View 9 Replies

VS 2008 Text Not 'decrypting'

Mar 31, 2009

i'm making instead of having the game save as regular text i wanted to mix it up a little. So, i took a bunch of special characters and assigned letters - A-Z and numbers 0-9 - some special characters per character. Anyway, when i 'encrypt'(not really encrypt) the text it works fine. But when i go to change it back.. that's where nothing happens.[code]The code for when i change the regular text into special characters is the same thing except backwards.I would rather not post the project since it's part of an even bigger project.

View 8 Replies

Occasional Bad Data Error When Decrypting

Feb 2, 2011

[Code] Here _data is a string containing the encrypted value. m_transformDec is the Decryptor created previously. Usually this works. Occasionally, I get a "bad data" error. I print out the value of _data, and it is always the same. The code is multi-threaded, which I suspect is the reason for both the problem, and it being hard to reproduce. The decryptor is created in the creation of the class, and the decryption is done in a Shared function, but I don't see anything there which is not thread-safe. Any ideas?

View 1 Replies

Decrypting And Checking RegistryKey Value On Form Startup

Aug 16, 2011

I have encrypted a user inputted value and successfully stored it in the Windows Registry. Now I am having problems Decrypting that RegistryKey when my Form starts up and making sure it is the same key that was originally stored. My decrypting code has been working but if I go inside the Registry and add an extra character on to that keys value, my program is still running.. It is not supposed to run if that RegistryKey is not the one that was originally user inputted..[code]And I also have tried A LOT of other examples, but I am not going too post them all. So is there anyway I can check if a RegistryKey exists and Decrypt it to make sure that it has not been changed on my programs startup?

View 9 Replies

C# - .NET Options For Decrypting A Password In Project .setting File?

Nov 15, 2010

In the UI of my winForm I ask the user for a user name and password. I store this password as text in the Settings (the .settings file) of my project. The app is a visual Studio Add-in How can I encrypt and decrypt the password before and after I enter it into the Settings file? I don't really need anything fancy. It's just a little in-house app. But I'd like to know all my options

View 3 Replies

Make Some Simple Program For Encrypt / Decrypting Message Using VB?

Jun 29, 2010

i want to make some simple program for encrypt / decrypting message using VB, my problem was when i want to decrypt the message, the result was incorrect,

Code:
Dim decryptor As Integer = TextBoxhasilencrypt.Text
Dim privatekey As Integer = Labelprivatekey.Text
Dim modulus As Integer = LabelModulus.Text

[code]....

the logic error on the program was when the "power of" are odd

View 2 Replies

Generate Executable From An Executable?

Jul 24, 2011

I Actually want to provide a new service which requires creating executables on the fly from executables generated in vb.net. For example lets say I have a form with a textbox and in that textbox we pass an argument which is for example the serial of the product, then we have a button which once clicked will generate an executable on the fly which has also a textbox requiring that serial to run? That was only an example but the main thing is how to generate that exe on the fly.

View 4 Replies

Encrypting A Text In .net?

Mar 29, 2010

I am new to .net classes and i would like to know how can i encrypt a text with AES256 algorithm.

View 3 Replies

Encrypting Data With RSA In .NET

Apr 8, 2012

I have a DER file with sha1RSA as the Signature Algorithm. I have to encrypt some data using it.Can anyone tell me how do I load the DER file and use the RSA public key in it to encrypt my data in .NET?

View 1 Replies

VS 2010 Program Crashes As Published Executable, Not As Program Running In Studio Or Express?

Jun 6, 2012

I wrote this VB program to be able to throw a device we developed into programming mode where we use an ATMEL Flip installer to upload new firmware. I can program one device after another running the application off of Visual Studio Express 2010 or Visual Studio 2010, but when I go to publish this file and run it on another machine, it becomes unstable and crashes after each upload. On those same computers if I run the raw unpackaged program under Visual Studio Express, the system does not crash, and I can program devices repeatedly.

View 5 Replies

C# - Encrypting A Private Key With BouncyCastle?

May 19, 2012

I'm using the .NET version of BouncyCastle, and I have to save a private RSA key to file, obviously encrypted with a password for security reasons.What I'm trying right now is this:

Dim rand As New SecureRandom
Dim arr As Byte() = New Byte(7) {}
rand.NextBytes(arr)

[code].....

But BouncyCastle is thwrowing a NullReferenceException on the last instruction. Since the method is totally undocumented >:( I wonder if any of you know how to use it correctly...

View 1 Replies

C# - How To Stop Asp.net Encrypting The Querystring

May 11, 2011

I have a requirement where I have to pass some values into the next page via querystring.This querystring is coming from third party and they need to have it on the otherpage for some analysis. I just do a response.redirect and add the querystring that i recieve from them to the other page. My problem is that the .net environment is encoding/encrypting some of the special characters used by them which I dont want as it does not bring back the correct values in the new page.

[Code]...

View 2 Replies

Encrypting And Decryption A File

Sep 20, 2011

I am actually really new to VB and C#. From numerous tutorials that i found online i was able to create a small program that will encrypt a file. However I am having a really hard time decrying it back.[code]All I am trying to do is to create a program that will decrypte these file with an upload button. Our system encrypts the files to prevent operators from changing the results, we need to trend the data. However it will take way to long to use the online tool provided with the software. A desktop tool will save us much more time. The files generated are 70mb and up.

View 15 Replies

Encrypting File Using AES 128 And Securestring?

Oct 24, 2009

Im trying to create an encrypted file using a secure string and the AES128bit managed class to encrypt some data to a file.I have read many variations on the forums on how to do this but everyone seems to do it slightly differently. Ive created the below function and just wanted to confirm that this is the correct way to go about it.

[Code]...

View 4 Replies

Encrypting Strings With SHA1?

Jul 18, 2009

how to encrypting strings with SHA1, but all of the code I have found does not work or it is to complex for my program. I have found a website that has a encrypting demo program. It worked well so I email the programmer and he gave me this code.

[Code]...

View 8 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved