Encrypts the string ex.
Syntax
'Declaration
Public Shared Function Encrypt3StringEx( _
ByVal As String, _
ByVal () As Byte, _
ByVal () As Byte _
) As String
'Usage
Dim s As String
Dim key() As Byte
Dim IV() As Byte
Dim value As String
value = Utils.Encrypt3StringEx(s, key, IV)
public static string Encrypt3StringEx(
string ,
byte[] ,
byte[]
)
public function Encrypt3StringEx(
: String;
: Bytearray of;
: Bytearray of
): String; static;
public static function Encrypt3StringEx(
: String,
: byte[],
: byte[]
) : String;
public: static string* Encrypt3StringEx(
string* ,
byte[]* ,
byte[]*
)
public:
static String^ Encrypt3StringEx(
String^ ,
array<byte>^ ,
array<byte>^
)
Parameters
- s
- The s.
- key
- The key.
- IV
- The IV.
See Also