Click here to Skip to main content
15,893,622 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
I had downloaded a project before 4 years from this website of encrytion and decryption of files and strings using rc4 algorithm . but now i couldn't find that project. i need help.
Posted
Comments
[no name] 28-Jul-13 13:51pm    
Okay and what sort of help are you looking for?
prabhu2210 2-Jul-14 2:08am    
hi this is prabhu
C#.net
hi in project iam using chart(Aforge.controls.chart) for creating nodes and path then i want image upload in same chart with node visible .in panel and picture box image visible . but coming to chart no problem with nodes. image is not coming in chart .


thanks in advance.



OpenFileDialog fileOpen = new OpenFileDialog();
fileOpen.Title = "Open Image file";
fileOpen.Filter = "JPG Files (*.jpg)| *.jpg";
if (fileOpen.ShowDialog() == DialogResult.OK)
{

// chart.BackgroundImage = Image.FromFile(fileOpen.FileName);

}
fileOpen.Dispose();
}

 
Share this answer
 
Your best bet is to try Google: code project encrypt rc4[^] might give what you want.

If not, then add to the search anything you remember from the original article
 
Share this answer
 
Try this...

https://gist.github.com/farhadi/2185197

I think you are searching in an improper way, search properly...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900