Javascript Base64 解码使用反向循环?

发布于 2024-12-02 21:38:52 字数 178 浏览 0 评论 0原文

据此: http://jsperf.com/fors-vs-while/15在 JavaScript 中反向运行循环会产生更快的结果。有人听说过或尝试过使用 javascript 反向解码 Base64 字符串吗?

According to this: http://jsperf.com/fors-vs-while/15 running loops in reverse in javascript yield much faster results. Has anyone heard of or tried decoding Base64 strings using javascript in reverse?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-12-09 21:38:52

该算法类似于:

   1. Pad the input string to a multiple of 3 characters
   2. Initialize an empty results array 
   3. Looping backwards in the input string taking 3 chars at a time
   4.    convert 3 chars to the 4 Base64 equivalent
   5.    unshift the Base64 string to the results array
   6. Return the join of the results array.

The algorithm would be something like :

   1. Pad the input string to a multiple of 3 characters
   2. Initialize an empty results array 
   3. Looping backwards in the input string taking 3 chars at a time
   4.    convert 3 chars to the 4 Base64 equivalent
   5.    unshift the Base64 string to the results array
   6. Return the join of the results array.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文