本文介绍了基础64编码的目的是什么,为什么它用于HTTP基本认证?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我没有得到Base64加密。

I don't get the Base64 encryption.

如果可以解密Base64字符串,这是什么目的?

If one can decrypt a Base64 string, what is it's purpose?

为什么是用于HTTP Basic auth?

Why is it being used for HTTP Basic auth?

这就像告诉某人我的密码被翻转成OLLEH。

It's like telling to someone my password is reversed into OLLEH.

看到OLLEH的人会知道原来的密码是HELLO。

People seeing OLLEH will know the original password was HELLO.

推荐答案

Base64不是加密 - 一个编码。这是一种仅使用可打印(文字)字符表示二进制数据的方式。

Base64 is not encryption -- it's an encoding. It's a way of representing binary data using only printable (text) characters.

请参阅:

这篇关于基础64编码的目的是什么,为什么它用于HTTP基本认证?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 05:32