CryptRaw Function | |
Encrypt or decrypt a string handling its characters as single bytes (high order byte is ignored)
Namespace:
XSharp.VO
Assembly:
XSharp.VO (in XSharp.VO.dll) Version: 2.19
Syntax FUNCTION CryptRaw(
cSource AS STRING,
cKey AS STRING
) AS STRING
public static string CryptRaw(
string cSource,
string cKey
)
Request Example
View SourceParameters
- cSource
- Type: String
Text that must be encrypted - cKey
- Type: String
Key to use for the encryption
Return Value
Type:
StringEncrypted text. This has the same length as the original text
See Also