| CryptographyHelperCreateMask Method  | 
            Creates a mask from the given encrypted value based on a private key
            
 
Namespace: WorkflowGen.My.SecurityAssembly: WorkflowGen.My (in WorkflowGen.My.dll) Version: 2.4.0.0 (2.4.0.0)
Syntaxpublic static string CreateMask(
	string encryptedValue,
	string privateKey,
	char maskChar
)
Public Shared Function CreateMask ( 
	encryptedValue As String,
	privateKey As String,
	maskChar As Char
) As String
Parameters
- encryptedValue
 - Type: SystemString
The encrypted value to build the mask from - privateKey
 - Type: SystemString
The private key to use - maskChar
 - Type: SystemChar
The character composing the mask 
Return Value
Type: 
StringThe mask built from the given encrypted value
See Also