Thanx Rabbit.
i guess i really don't need to save the key as it will make the whole program unsecure.
User Profile
Collapse
-
Hello Rabbit,
Am creating my own algorithm as a school project. it's required for me go enter my next level of studies.
i was also doubting on the saving of the encryption key as it will make the system less secure. how do i do it so that the decryption key is compared to t he encryption key.
i value your response.Leave a comment:
-
how to save a password in an encyrption program
Hello,
Am making a simple encryption system, I've done most of the work but am having a problem in making a way of saving the encryption key such that it is compared to the decryption key before the decryption process is done.
Regards
LuckieM -
Hello
Many thanx GaryTexmo for your explanations and for the codes. i was able to make my program workLeave a comment:
-
Thanx GrayTexmo for yours respnse.
am using the streamreader type to declare reading.
below is the full code for me read button.
Code:private void button1_Click(object sender, EventArgs e) { string FileName = "E:\\testFile.txt"; string textline=""; System.IO.StreamReader Reading; Reading = new System.IO.StreamReader(FileName, true);
Leave a comment:
-
text files
Hello,
Am writing a programme that is getting the contents of a text file one by one by use of a for loop. as can be seen below.
Code:for (int i = 0; i < FileName.Length; i++) { textline = textline + (Reading.Read() + " "; textBox1.Text =textline; }
No activity results to display
Show More
Leave a comment: