Can a base64 encoded string contain whitespace?(base64 编码的字符串可以包含空格吗?)
问题描述
base64 编码的字符串可能包含空格吗?具体来说,它是否可以在字符串的 end 处包含空格?
Might a base64 encoded string contain whitespace? Specifically, could it contain whitespace at the end of the string?
附注.我正在考虑整个在 VARCHAR 字段中存储字符串时,MySQL 将修剪尾随空格";-)
PS. I'm thinking about the whole "MySQL will trim trailing whitespace when storing strings in VARCHAR fields" here ;-)
推荐答案
不,它不能.请参阅 Base64 以了解 base64
使用的允许字符存储库,它们是字符 AZ
、az
、0-9
、+
和 /
(最后一个两个可能因实现而异)以及填充字符 =
(但这也取决于实现,因为某些实现根本不使用填充).
No it can't. See Base64 for the allowed character repository used by base64
, which are the characters A-Z
, a-z
, 0-9
, +
and /
(the last two may differ depending on the implementation) as well as the padding character =
(but that's also implementation dependent as some implementations don't use padding at all).
这篇关于base64 编码的字符串可以包含空格吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:base64 编码的字符串可以包含空格吗?


基础教程推荐
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01