| AES256StringToBytes Method |
Generates a byte representation of a string generated by BytesToString().
Namespace:
Galactic.Cryptography
Assembly:
Galactic.Cryptography (in Galactic.Cryptography.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public static byte[] StringToBytes(
string text
)
Public Shared Function StringToBytes (
text As String
) As Byte()
public:
static array<unsigned char>^ StringToBytes(
String^ text
)
static member StringToBytes :
text : string -> byte[]
Parameters
- text
- Type: SystemString
The string to convert.
Return Value
Type:
ByteA byte representation of the string, or any empty byte array if the string could not
be successfully converted.
See Also