CryptographyRemoveSalt Method
Removes salt from a decrypted string.
Namespace: InnerDrive.CoreAssembly: InnerDrive.Core (in InnerDrive.Core.dll) Version: 5.2.9017.0
public static string RemoveSalt(
string decryptedText
)
- decryptedText String
- The decrypted string from which to remove salt.
StringThe original plaintext string that was encrypted.
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.