about DESCryptoServiceProvider

  • Thread starter Thread starter creative
  • Start date Start date
C

creative

DESCryptoServiceProvider
the class has a member IV .
what is the member?

When I encrypted some data with DESCryptoServiceProvider .
Then Other descrpted the encrypted data with the algorithm of des written by
language C.
But it failed.
 
creative said:
DESCryptoServiceProvider
the class has a member IV .
what is the member?

It's the initialization vector - basically the starting state.
When I encrypted some data with DESCryptoServiceProvider .
Then Other descrpted the encrypted data with the algorithm of des written by
language C.
But it failed.

Well, were both the key and the initialization vector used for
decrypting the same as those used for encrypting?
 
Back
Top