CryptographyHelperCreateMaskAes Method  | 
 
            Creates a mask from the given AES encrypted value based on a private key
            
 
    Namespace: 
   WorkflowGen.My.Security
    Assembly:
   WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.7.2.0 (4.7.2.0)
Syntaxpublic static string CreateMaskAes(
	string encryptedValue,
	string privateKey,
	char maskChar
)
Public Shared Function CreateMaskAes ( 
	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