Passing base64 encoded strings in URL

前端 未结 10 1634
臣服心动
臣服心动 2020-11-22 03:11

Is it safe to pass raw base64 encoded strings via GET parameters?

相关标签:
10条回答
  • 2020-11-22 04:06

    Its a base64url encode you can try out, its just extension of joeshmo's code above.

    function base64url_encode($data) {
    return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');
    }
    
    function base64url_decode($data) {
    return base64_decode(str_pad(strtr($data, '-_', '+/'), strlen($data) % 4, '=', STR_PAD_RIGHT));
    }
    
    0 讨论(0)
  • 2020-11-22 04:10

    For url safe encode, like base64.urlsafe_b64encode(...) in Python the code below, works to me for 100%

    function base64UrlSafeEncode(string $input)
    {
       return str_replace(['+', '/'], ['-', '_'], base64_encode($input));
    }
    
    0 讨论(0)
  • 2020-11-22 04:12

    There are additional base64 specs. (See the table here for specifics ). But essentially you need 65 chars to encode: 26 lowercase + 26 uppercase + 10 digits = 62.

    You need two more ['+', '/'] and a padding char '='. But none of them are url friendly, so just use different chars for them and you're set. The standard ones from the chart above are ['-', '_'], but you could use other chars as long as you decoded them the same, and didn't need to share with others.

    I'd recommend just writing your own helpers. Like these from the comments on the php manual page for base64_encode:

    function base64_url_encode($input) {
     return strtr(base64_encode($input), '+/=', '._-');
    }
    
    function base64_url_decode($input) {
     return base64_decode(strtr($input, '._-', '+/='));
    }
    
    0 讨论(0)
  • 2020-11-22 04:13

    In theory, yes, as long as you don't exceed the maximum url and/oor query string length for the client or server.

    In practice, things can get a bit trickier. For example, it can trigger an HttpRequestValidationException on ASP.NET if the value happens to contain an "on" and you leave in the trailing "==".

    0 讨论(0)
提交回复
热议问题