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: 8.0.6.0 (8.0.6.20210916)
Syntax public 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