12. 安全考虑 (Security Considerations)
Base encoding 本身不提供 confidentiality, integrity 或 authentication. 它只是 binary-to-text representation. 不应把 Base64 或其他 base encoding 当作加密.
Decoder 如果忽略非 alphabet character, 可能形成 covert channel 或触发实现漏洞. 不严格的 padding 和 padding bit 处理也可能导致同一 binary data 出现多个 textual representation, 影响签名, 哈希或规范化比较.
实现应避免因超大输入, 非法字符或异常 padding 产生 buffer overflow, excessive allocation 或 timing difference 等问题.