LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
global class EncodingUtil {
    global EncodingUtil() { }
    global static Blob base64Decode(String s) { }
    global static String base64Encode(Blob s) { }
    global Object clone() { }
    global static Blob convertFromHex(String input) { }
    global static String convertToHex(Blob s) { }
    global static String urlDecode(String s, String enc) { }
    global static String urlEncode(String s, String enc) { }
 
}