Click here to Skip to main content
15,920,503 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# Button Click for UART Pin
John-EE10-Feb-10 18:52
John-EE10-Feb-10 18:52 
AnswerRe: C# Button Click for UART Pin
Bekjong10-Feb-10 19:14
Bekjong10-Feb-10 19:14 
AnswerRe: C# Button Click for UART Pin
harold aptroot10-Feb-10 20:24
harold aptroot10-Feb-10 20:24 
GeneralRe: C# Button Click for UART Pin
OriginalGriff10-Feb-10 21:54
mveOriginalGriff10-Feb-10 21:54 
QuestionFun With User Controls Pin
Roger Wright10-Feb-10 18:36
professionalRoger Wright10-Feb-10 18:36 
AnswerRe: Fun With User Controls Pin
AspDotNetDev10-Feb-10 19:27
protectorAspDotNetDev10-Feb-10 19:27 
GeneralRe: Fun With User Controls Pin
Roger Wright11-Feb-10 2:08
professionalRoger Wright11-Feb-10 2:08 
Questioncalling web service Pin
Ramkithepower10-Feb-10 16:46
Ramkithepower10-Feb-10 16:46 
AnswerRe: calling web service Pin
Pranay Rana10-Feb-10 18:05
professionalPranay Rana10-Feb-10 18:05 
Questionhow would you change your bindingsource for a textbox programmably Pin
tonyonlinux10-Feb-10 14:37
tonyonlinux10-Feb-10 14:37 
AnswerRe: how would you change your bindingsource for a textbox programmably Pin
Gaurav Dudeja India10-Feb-10 17:22
Gaurav Dudeja India10-Feb-10 17:22 
GeneralRe: how would you change your bindingsource for a textbox programmably Pin
tonyonlinux10-Feb-10 17:32
tonyonlinux10-Feb-10 17:32 
GeneralRe: how would you change your bindingsource for a textbox programmably Pin
tonyonlinux10-Feb-10 18:13
tonyonlinux10-Feb-10 18:13 
QuestionMoving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 9:12
shadowthief_0310-Feb-10 9:12 
AnswerRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Keith Barrow10-Feb-10 9:15
professionalKeith Barrow10-Feb-10 9:15 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 9:53
shadowthief_0310-Feb-10 9:53 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Keith Barrow10-Feb-10 10:08
professionalKeith Barrow10-Feb-10 10:08 
Everything you need is in System.IO, for example the File class has Copy and Delete methods. Basic code would look like this:

string sourcePath = ".....";
string destinationPath = "......";
File.Copy(sourcePath, destinationPath);
//Process copied file
File.Delete(destinationPath);


If I understand your post, there is still a problem with packaging up the decryption utility.
a) If your password is not the key then the encryption is only as good as the password strength (and the code to verify the password). It is also open to automated attempts at finding the password.
b) If you use both the key and the iv as the password, you need will need to send these as plain text to the user.
c) Along side b, Long keys are unlikely to be entered correctly by the user, short values are are susceptible to brute-force attacks).
d) You will need to obstifucate your decrypter to. Posssibly
Antoine de Saint-Exupery: Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away.

GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 10:35
shadowthief_0310-Feb-10 10:35 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Keith Barrow10-Feb-10 11:21
professionalKeith Barrow10-Feb-10 11:21 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 10:53
shadowthief_0310-Feb-10 10:53 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Eddy Vluggen10-Feb-10 11:14
professionalEddy Vluggen10-Feb-10 11:14 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 11:24
shadowthief_0310-Feb-10 11:24 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Keith Barrow10-Feb-10 11:38
professionalKeith Barrow10-Feb-10 11:38 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 11:56
shadowthief_0310-Feb-10 11:56 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Eddy Vluggen10-Feb-10 12:00
professionalEddy Vluggen10-Feb-10 12:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.