User Profile

Collapse

Profile Sidebar

Collapse
LuckieM
LuckieM
Last Activity: Nov 14 '11, 09:09 AM
Joined: Apr 11 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Thanx Rabbit.

    i guess i really don't need to save the key as it will make the whole program unsecure.
    See more | Go to post

    Leave a comment:


  • 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.
    See more | Go to post

    Leave a comment:


  • LuckieM
    started a topic how to save a password in an encyrption program

    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
    See more | Go to post

  • LuckieM
    replied to text files
    Hello

    Many thanx GaryTexmo for your explanations and for the codes. i was able to make my program work
    See more | Go to post

    Leave a comment:


  • LuckieM
    replied to text files
    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);
    ...
    See more | Go to post

    Leave a comment:


  • LuckieM
    started a topic text files

    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;
    }
    The problem am facing is the FileName.length property is not getting all the characters from the file.how do i set it such that...
    See more | Go to post
No activity results to display
Show More
Working...