safely decrypt sensitive data

Namespace: DotNetNuke.Services.Cryptography
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public abstract string DecryptString(
	string message,
	string passphrase
)
Visual Basic
Public MustOverride Function DecryptString ( 
	message As String,
	passphrase As String
) As String

Parameters

message
Type: System..::..String
the text to be decrypted
passphrase
Type: System..::..String
the key to perform the decryption

Return Value

decrypted string

Implements

ICryptographyProvider..::..DecryptString(String, String)

See Also