oauth: never use base64 padding when returning tokens to applications
The normal Base64 alphabet uses the equals sign (=) as a padding character. Since Base64 strings are self-synchronizing, padding characters are unnecessary, so don't generate them in the first place.
This commit is contained in:
parent
1ef4741861
commit
e9ef4b8da6
4 changed files with 12 additions and 6 deletions
|
|
@ -173,7 +173,7 @@ defmodule Pleroma.Web.OAuth.OAuthController do
|
|||
token
|
||||
|> URI.decode()
|
||||
|> Base.url_decode64!(padding: false)
|
||||
|> Base.url_encode64()
|
||||
|> Base.url_encode64(padding: false)
|
||||
end
|
||||
|
||||
defp get_app_from_request(conn, params) do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue