江麻妞
2021-05-12 d34467d3f4d0f709a99194e36c0e0b6f242d9b40
fix(cipher): fix #587 (#588)

1个文件已修改
2 ■■■ 已修改文件
src/utils/cipher.ts 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/utils/cipher.ts
@@ -43,7 +43,7 @@
}
export function encryptByBase64(cipherText: string) {
  return Base64.parse(cipherText).toString(UTF8);
  return UTF8.parse(cipherText).toString(Base64);
}
export function decodeByBase64(cipherText: string) {