Click or drag to resize

CryptographyRemoveSalt Method

Removes salt from a decrypted string.

Namespace: InnerDrive.Core
Assembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.0.8475.0
Syntax
C#
public static string RemoveSalt(
	string decryptedText
)

Parameters

decryptedText  String
The decrypted string from which to remove salt.

Return Value

String
The original plaintext string that was encrypted.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown if decryptedText is null.
Remarks
If the plaintext string was not originally salted with the parallel method in this class (AddSalt(String)), there is no guarantee that the plaintext returned by this method will be correct.

The implementation of this routine is not guaranteed to remain the same between version releases of the Idea framework.

The current implementation last changed with version 1.0 rev. 1152.

See Writing Secure Code by Michael Howard for more information on this technique.

See Also