• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# util Tool Function – Base64Codec
2
3### Introduction
4
5Base64 is a method of representing binary data based on 64 printable characters. This sample shows Base64 encoding and decoding output.
6
7### Usage
8
91. Touch **Encode**. The sample app converts the string into ASCII code, encodes the ASCII code, and displays the encoded result in the text box.
10
112. Touch **Decode**. The previously encoded result is used as the input to the decoder. After decoding, the sample app obtains an ASCII code array, converts it into a string, and displays the string in the text box.
12
13### Constraints
14
15This sample can only be run on standard-system devices.
16