可能的字符 base64 url​​ 安全功能

2022-01-21 00:00:00 base64 php

从这个字符串返回的可能字符范围是多少?

What is the range of possible characters returned from this string?

function base64url_encode($data) 
{ 
  return rtrim(strtr(base64_encode($data), '+/', '-_'), '='); 
} 

我的猜测是 [a-z0-9-_]

推荐答案

可能返回的字符范围是:

The range of possible characters returned are:

  • <代码>A、B、C、D、E、F、G、H、I、J、K、L、M、N、O、P、Q、R、S、T、U、V、W、X、Y、Z
  • <代码>a、b、c、d、e、f、g、h、i、j、k、l、m、n、o、p、q、r、s、t、u、v、w, x, y, z
  • 0、1、2、3、4、5、6、7、8、9
  • -(减号)和_(下划线)

在您的正则表达式样式中,这将是 [a-zA-Z0-9_-].

In your regex-style, that would be [a-zA-Z0-9_-].

相关文章