Encrypt A Line Of Code In The Program
Apr 4, 2011
I'm trying to make a updater for my program at first i tried putting a password on the files folder then users can download the new zip file when its updated but when they first time install it wont have the password on it so i then decided not to use a password and am wondering how would i encrypt a line of code in the program? its the line that contains the database info so obviously i don't want my users to see that.
View 9 Replies
ADVERTISEMENT
Jan 15, 2012
I am using the given code to copy my database files...it works like a charm in debug mode but as soon as I create a setup, it stops working. The error is
"Database Detach Failed"
I tried checking the code line by line and found that the code does not enter the IF block.I have no idea why.
Public Sub bk()
Try
Dim strDatabasePath As String = My.Computer.FileSystem.CombinePath(My.Application.Info.DirectoryPath, "LIC.mdf")[code].....
View 2 Replies
Nov 12, 2009
i have found a few encrypt/decrypt tutorials online but either they dont work or they only work when the application is running so if i encrypt a string using some code i find and save it (in its encrypted form) and then restart the application and enter the saved encrypted string into a textbox and run the decrypt code it wont decrypt it. i don't understand why en/de-cryption is so hard or why there are so little working examples online. could someone be so kind and show me some code that can let me en/de-crypt a string even if i restart the application or use it on a different computer? and doesn't show the weak key errors all the time.
View 3 Replies
Jan 12, 2012
I tried with the following code. It encrypted the file but after I FTP'd the file to my vendor he was not able to decrypt it.Then realized that this code is not using my PGP Keys to encrypt the file. It's creating a new key automatically. That's the reason my vendor is not able to decrypt the file. How can I encrypt the file using my PGP keys? So that my vendor can decrypt the file using same PGP keys.
' Encrypt textfile with Rijndael encryption
Public
Shared
Sub Encrypt(ByVal[code].....
View 3 Replies
Jun 16, 2009
I have forgotten the right procedure to encrypt the VB2008 code with dotfuscator community edition, may you explain the way to use it (the dotfuscator) step by step?
View 2 Replies
Dec 12, 2009
Is it possible to encrypt string in VB.NET, so user won't be able to see it, when he opens program with hex editor, or something like that.
View 4 Replies
Jun 23, 2011
I'm wanting to encrypt some data (hopefully under five hundred bytes' worth) and store it in a QR code. Originally I wanted to use RSA, so the data would be signed with User A's private key and User B's public key, but unfortunately, VB.NET doesn't like encrypting that much data. I've read that I should use Rjindael to encrypt the actual data, and then use RSA to encrypt the key used by Rjindael. However, I'm not having much luck being able to search the web for some kind of tutorial or something.
Also, if I was wanting to store this on a QR code, wouldn't I have to store both the encrypted data and the encrypted key used by Rjindael? Do you think this would all fit? I may be able to use version 40 on medium error correction [URl].. it stores 18,672 "data bits"), but I would prefer to use a lower version (that is, smaller) if at all possible.Generating the QR code won't be the problem (I know there's a .NET library for that), I'm just curious about getting the data encrypted to begin with.
View 1 Replies
Jul 23, 2009
encrypt the string values stored in the code.The problem is that when the code is compiled and the .exe file is generated, anybody can edit the .exe file with an text editor or another program and see the values.This is very important for me, because i have some password stored in string variables?
View 1 Replies
Mar 29, 2010
My database is going to contain personal data. (such as contact details, names, password, etc...) This is what I need:
1) I need to encrypt the database
2) However, i will also need to be able to use it in my vb.net program.
To expand on my second point, i will need to be able to display the data (non-encrypted, obviously), and i will need to be able to compare user inputted data to the database data (like, i will be using datasets, so, IF txtUsername.text = ds.tables(0) ...)
[Code]...
View 12 Replies
Apr 11, 2009
i am trying to make a small program to encrypt files using AES, and then have the password from the AES encrypted using RSA for its use of public keys. i've got the AES part working fine and i found a good RSA tutorial here url....but after i encrypt the AES password (which is saved in a .txt file) using RSA, then i try to decrypt it again, it comes out as an empty .txt file!
View 4 Replies
Jul 22, 2010
I want to make a program to encrypt and decrypt messages using a word cipher or random lettering(no duplicate letters) etc.
I've got 2 input boxes:
input text and keyword box
Two Buttons:
encrypt and decrypt
This is about all I have coded so far
Code:
Private Sub Encrypt_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Encrypt.Click
Dim EncryptInput As String
[Code]....
I have a few guess how to do this (not 100%) but setting up some sort of array might be one (not sure if it's the easiest)
Edit: one thing for sure I want to be able to separate the characters in the keyword into the start of an array (if the array is the best option)
I don't necessarily need code, I just need some advisement on how to approach this with commands. I don't know too many commands (only remember some fortran)
View 9 Replies
Aug 9, 2009
I am just wondering how to encrypt my program so people can't hack it. I have a program that has a spot where you can type in problems with the program and it will email it to me. But, when I release my program people hack my email and password that is used to send the problems.
View 7 Replies
Feb 14, 2009
I need some help with writing a program that will encrypt text using AES encryption. I'm not quite sure how to go about doing this.
View 1 Replies
Feb 1, 2012
This is the code i have thus far, using Visual Basic 2010 Express[code]...
View 12 Replies
Feb 21, 2009
I am trying to encrypt text to a textfile(.txt) and then decrypt it in a diff. program.The encrypting part works fine.I have tried these functions in a textbox and they work perfectly, I get InvalidCastException when trying to decrypt from the .txt file.
[Code]...
View 2 Replies
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
Jan 29, 2009
Is there a way to show the line number of the line of code that caused an exception within a Try...Catch block?
View 5 Replies
May 29, 2010
I am using WebBrowser1.DocumentText to get a websites source code, and then parse a string. I am trying to view the source line by line, and doing it as follows:
[Code]...
However what is displayed is each character from the source code, rather than the line. I am making the client log into a website, and the needed value from the source code is then parsed, so I need to use the WebBrowser type to get the source code.
View 2 Replies
Jan 20, 2010
show me a simple code for downloading a file from internet with a URL,Line by Line with streamreader?
View 6 Replies
Feb 2, 2009
If anybody is having code for comparing files line by line using vb.net.
View 2 Replies
Dec 13, 2009
I have this string just down loaded of a Unix server. I would like to remove the box (0x0A) Unix end line code; then replace it with CR+LF normal ASCII code. Also, I would like to do the replace before I save the data, while it in memory.
View 14 Replies
Dec 18, 2010
I create my algorthm and its finished but there is a problem, it encrypte all text and all text in a file but after decryption when i open my file (a video file)the player show all information about file(duration,size and ect) currectly but it dont play that my program encrypt and decrypt byte by byte and place a asci code in bytes(0 to 255)
View 12 Replies
Feb 28, 2011
I'm having trouble writing the code to encrypt a file->networkstream->Decrypt the file.. I've tried several ways, but I keep failing....
View 1 Replies
Sep 7, 2009
I am trying to write a program to decrypt and encrypt the ceaser cipher or ceaser shift (which ever you prefer using), and I really need help I don't even know how to start. I am hoping that someone on here can atleast help me to get started with writing the program.
View 4 Replies
Jul 28, 2010
I've written an encryption program that encrypts and decrypts selected files using a user-entered password as the encryption key.
Once en/decrypted, the user will be asked if they want to delete the file that was used, and, in the case of decryption, open the newly decrypted file.
My brother came up with an idea for this application yesterday that might save me a lot of grief should I forget a password. [code]...
View 5 Replies
Feb 25, 2010
If e.CommandLine.Count > 0 Then
Dim IncomingCommand As String = e.CommandLine.Item(0).ToString
If IncomingCommand.Substring(0, 2) = "-1" Then
form1.close()
End If
End If
I am trying to make the program close if the -1 string is sent with the program. See my installer allows for me to run certain programs before it actually installs, but it doesn't shut down copies of the program itself. So I have a next startup instance set to shut the program down if the -1 is received. But if the program is not running it starts up instead. This is not desired. form1.close doesn't work. e.cancel = true doesn't work, etc etc. What can I do to make the program not start during this instance.
View 1 Replies
Mar 1, 2012
This is going to be a lot to ask, but I'd like to convert my old GW-BASIC program to a command line program with arguments. I'd like it to operate as follows:
elapse [drive:][path]filename This is my old code.
5 CLS
10 OPEN "G:Calc.txt" FOR INPUT AS #1
20 WHILE NOT EOF(1): INPUT #1, A$, B$
30 IF MID$(A$,3,1)=":" THEN C$="DOUBLE DIGIT":GOTO 50
40 IF MID$(A$,2,1)=":" THEN C$="SINGLE DIGIT":GOTO 120
[Code]...
View 3 Replies
Jun 13, 2011
Need to design a program that can encrypt and decrypt messages stored in simple text files using a private key stored in a separate file. Software should also be able to allow the users to enter simple messages that either displays the encrypted or decrypted message. The encryption method should use a simple substitution method. It should be set out in the following format:
Example (the "@" is the separator):
@
The character The Code End of line
A @ 4gh EOL
B @ 84!9 EOL
Has to use the 256 ASCII character codes. The separator will be used to separate the character and its corresponding code.Here are the pseudocodes I have come up with:
� Read any private key file
separator = readline(file);
while not EOF(file) do
tempStr = readline(file);
[code].....
View 5 Replies
Oct 25, 2009
I am a beginner and i have a simple question. How can i run code in VB.NET line by line?
Here is an example Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]...
When i click the button the text "Start" will be displayed in TextBox1 only after the whole event has finished, after the webpage is loaded in RichTextBox1. What i need is the text in TextBox1 displayed before it starts downloading the webpage in RichTextBox1.
View 5 Replies
Oct 12, 2009
have a question about the program jumping to a line of code and using that.Here is an example:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Enabled = True
[code].....
View 1 Replies