MCPcopy Create free account
hub / github.com/develop202/migu_video / Base64decrypt

Function Base64decrypt

utils/EncryUtils.js:37–40  ·  view source on GitHub ↗

* base64 解密 * @param {string} str - * @returns {string} -

(str)

Source from the content-addressed store, hash-verified

35 * @returns {string} -
36 */
37function Base64decrypt(str) {
38 const buff = Buffer.from(str, 'base64');
39 return buff.toString('utf-8')
40}
41
42/**
43 * AES 加密

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected