Click here to Skip to main content
15,905,508 members
Home / Discussions / C#
   

C#

 
GeneralRe: What's more easy for the machine? Pin
shopi3018-Jan-06 1:25
shopi3018-Jan-06 1:25 
AnswerRe: What's more easy for the machine? Pin
DavidNohejl17-Jan-06 21:47
DavidNohejl17-Jan-06 21:47 
GeneralRe: What's more easy for the machine? Pin
shopi3018-Jan-06 1:25
shopi3018-Jan-06 1:25 
QuestionFirewall development using C#(need help) Pin
MACODER17-Jan-06 18:37
MACODER17-Jan-06 18:37 
AnswerRe: Firewall development using C#(need help) Pin
Colin Angus Mackay17-Jan-06 22:54
Colin Angus Mackay17-Jan-06 22:54 
AnswerRe: Firewall development using C#(need help) Pin
Dave Kreskowiak18-Jan-06 5:10
mveDave Kreskowiak18-Jan-06 5:10 
QuestionC# program for transparent screen lock Pin
siwei9917-Jan-06 16:30
siwei9917-Jan-06 16:30 
Question2 TreeView Issues Pin
LighthouseJ17-Jan-06 16:01
LighthouseJ17-Jan-06 16:01 
QuestionControl/literal Pin
student_rhr17-Jan-06 14:22
student_rhr17-Jan-06 14:22 
AnswerRe: Control/literal Pin
Christian Graus17-Jan-06 14:31
protectorChristian Graus17-Jan-06 14:31 
AnswerRe: Control/literal Pin
Guffa17-Jan-06 21:57
Guffa17-Jan-06 21:57 
QuestionTopMost Window Pin
Careth Jefferson17-Jan-06 13:51
Careth Jefferson17-Jan-06 13:51 
AnswerRe: TopMost Window Pin
Christian Graus17-Jan-06 14:02
protectorChristian Graus17-Jan-06 14:02 
AnswerRe: TopMost Window Pin
Careth Jefferson17-Jan-06 14:14
Careth Jefferson17-Jan-06 14:14 
GeneralRe: TopMost Window Pin
Christian Graus17-Jan-06 14:15
protectorChristian Graus17-Jan-06 14:15 
GeneralRe: TopMost Window Pin
Careth Jefferson17-Jan-06 19:08
Careth Jefferson17-Jan-06 19:08 
GeneralRe: TopMost Window Pin
Christian Graus18-Jan-06 8:54
protectorChristian Graus18-Jan-06 8:54 
AnswerRe: TopMost Window Pin
DigitalKing17-Jan-06 14:18
DigitalKing17-Jan-06 14:18 
Questionhey guys check this out Pin
abstarsss17-Jan-06 13:30
abstarsss17-Jan-06 13:30 
AnswerRe: hey guys check this out Pin
Christian Graus17-Jan-06 14:15
protectorChristian Graus17-Jan-06 14:15 
QuestionTripleDES encryption. Anyone want to help? Pin
jbergetun17-Jan-06 12:31
jbergetun17-Jan-06 12:31 
AnswerRe: TripleDES encryption. Anyone want to help? Pin
Colin Angus Mackay17-Jan-06 23:03
Colin Angus Mackay17-Jan-06 23:03 
The initialisation vector (IV) is not a key. It is a sequence of random digits that are applied to the start of the encrypted document. This is because for certain documents there is a well known starting sequence and given the same key, they would all encrypt to the same value, so the first few bytes of the encrypted text of multiple documents using the same key would look the same. Crack one and you have the others. The IV scrambles the start of the document and becuase the encryption of block n+1 depends on how block n was encrypted it becomes exceedingly difficult to determine any repeated sections of the file.

The IV is known and you are free to transmit it in plaintext because even if an attacker gets hold of it they cannot do anything with it without the key. The IV should be different on each communication otherwise similar files will look similar when encrypted.

I don't know if this helps with your problem, but knowing a bit more about the IV may help you track down a solution more easily.

ColinMackay.net
"Man who stand on hill with mouth open will wait long time for roast duck to drop in." -- Confucius
"If a man empties his purse into his head, no man can take it away from him, for an investment in knowledge pays the best interest." -- Joseph E. O'Donnell

GeneralRe: TripleDES encryption. Anyone want to help? Pin
jbergetun18-Jan-06 7:48
jbergetun18-Jan-06 7:48 
GeneralRe: TripleDES encryption. Anyone want to help? Pin
Colin Angus Mackay18-Jan-06 11:39
Colin Angus Mackay18-Jan-06 11:39 
GeneralRe: TripleDES encryption. Anyone want to help? Pin
jbergetun19-Jan-06 10:21
jbergetun19-Jan-06 10:21 

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.