Base64URL 编码和解码

Base64URL是一种类似于Base64的编解码方案。Base64 使用一些字符对不能直接在 URL 中使用的数据进行编码。+,/和字符=在 URL 中具有特殊含义,可能会导致错误。Base64URL 使用-instead of+_instead of /。Base64URL 不使用=字符来填充编码输出。

使用 PHP 进行 Base64URL 编码和解码

带有自定义代码的base64_encodebase64_decode函数

<?php

function base64UrlEncode(string $data): string
{
    $base64Url = strtr(base64_encode($data), '+/', '-_');

    return rtrim($base64Url, '=');
}

function base64UrlDecode(string $base64Url): string
{
    return base64_decode(strtr($base64Url, '-_', '+/'));
}

$text = '<<<?!?!?>>>';
$base64Url = base64UrlEncode($text);
echo $base64Url.PHP_EOL;

$text = base64UrlDecode($base64Url);
echo $text.PHP_EOL;

使用 Python 进行 Base64URL 编码和解码

带有自定义代码的base64模块

from base64 import urlsafe_b64encode, urlsafe_b64decode

def base64UrlEncode(data):
    return urlsafe_b64encode(data).rstrip(b'=')


def base64UrlDecode(base64Url):
    padding = b'=' * (4 - (len(base64Url) % 4))

    return urlsafe_b64decode(base64Url + padding)


text = '<<<?!?!?>>>'
base64Url = base64UrlEncode(text.encode('utf-8')).decode('utf-8')
print(base64Url)

text = base64UrlDecode(base64Url.encode('utf-8')).decode('utf-8')
print(text)

版权声明:本文内容转自互联网,本文观点仅代表作者本人。本站仅提供信息存储空间服务,所有权归原作者所有。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至1393616908@qq.com 举报,一经查实,本站将立刻删除。

(0)

相关推荐

发表回复

登录后才能评论