 | CSYSEncryptString Method (CGXNETCore, String, String, Int32, Int32) |
Encrypts a string for secure storage in configuration files
or in the workspace parameters.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void EncryptString(
CGXNETCore gxNetShared,
string input,
ref string output,
int output_size,
int key
)
public static void EncryptString(
CGXNETCore gxNetShared,
string input,
ref string output,
int output_size,
int key
)
Public Shared Sub EncryptString (
gxNetShared As CGXNETCore,
input As String,
ByRef output As String,
output_size As Integer,
key As Integer
)
Public Shared Sub EncryptString (
gxNetShared As CGXNETCore,
input As String,
ByRef output As String,
output_size As Integer,
key As Integer
)
public:
static void EncryptString(
CGXNETCore^ gxNetShared,
String^ input,
String^% output,
int output_size,
int key
)
public:
static void EncryptString(
CGXNETCore^ gxNetShared,
String^ input,
String^% output,
int output_size,
int key
)
static member EncryptString :
gxNetShared : CGXNETCore *
input : string *
output : string byref *
output_size : int *
key : int -> unit
static member EncryptString :
gxNetShared : CGXNETCore *
input : string *
output : string byref *
output_size : int *
key : int -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - input
- Type: SystemString
Input string for encryption. - output
- Type: SystemString
Output buffer for encrypted result. - output_size
- Type: SystemInt32
Size of output buffer. - key
- Type: SystemInt32
<define>SYS_ENCRYPTION_KEY</define>
See Also