Skip to content

base64

encode

参数名描述可否为空
bytes要加密的字节数组
参数名描述可否为空
string要加密的字节数组
charset编码格式,默认UTF-8

TIP

返回值类型:String

根据字节数组或字符串进行base64加密,返回String

  • 根据访问结果进行base64加密

    javascript
    ${base64.encode(resp.html)}
    javascript
    ${base64.encode(resp.bytes)}

encodeBytes

参数名描述可否为空
bytes要加密的字节数组
参数名描述可否为空
string要加密的字节数组
charset编码格式,默认UTF-8

TIP

返回值类型:byte[]

  • 根据字节数组或字符串进行base64加密,返回byte[]
javascript
 ${base64.encodeBytes(resp.html)}
javascript
${base64.encodeBytes(resp.bytes)}

decode

参数名描述可否为空
bytes/string要解密的字节数组或字符串

TIP

返回值类型:byte[]

根据字节数组或字符串进行base64解密,返回byte[]

  • 根据访问结果进行base64解密

    javascript
    ${base64.decode(resp.html)}
    javascript
    ${base64.decode(resp.bytes)}

decodeString

参数名描述可否为空
string要解密的字符串
参数名描述可否为空
bytes要解密的字节数组
charset编码格式,默认UTF-8

TIP

返回值类型:String

根据字节数组或字符串进行base64解密,返回String

  • 根据访问结果进行base64解密

    javascript
    ${base64.decodeString(resp.html)}
    javascript
    ${base64.decodeString(resp.bytes)}

Kspider