Salmon
|
C# default implementation of Base64 encoder/decoder. More...
Public Member Functions | |
byte[] | Decode (string text) |
Decode text from Base64 string. | |
string | Encode (byte[] data) |
Encode byte array to a text string. | |
Public Member Functions inherited from Mku.Convert.IBase64 |
C# default implementation of Base64 encoder/decoder.
byte[] Mku.Convert.Base64.Decode | ( | string | text | ) |
Decode text from Base64 string.
text | string to be decoded |
Implements Mku.Convert.IBase64.
string Mku.Convert.Base64.Encode | ( | byte[] | data | ) |
Encode byte array to a text string.
data | Byte array to be encoded. |
Implements Mku.Convert.IBase64.