* base64 解密 * @param {string} str - * @returns {string} -
(str)
| 35 | * @returns {string} - |
| 36 | */ |
| 37 | function Base64decrypt(str) { |
| 38 | const buff = Buffer.from(str, 'base64'); |
| 39 | return buff.toString('utf-8') |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * AES 加密 |
nothing calls this directly
no outgoing calls
no test coverage detected