We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I make hash($crypt->encryptBase64), for send url, hash look like
QGTBGorKoHBAGx/0qbtFjI6+iM3Eyggahl0KXER+iJUHUlrdcHb3zQF/VqGQeTJpfUYIi4kITryS0oQJLfVg==
Hash has special chars like '/' and '+'
It would be nice if we had something like $crypt->encryptbase64safeUrL() and $crypt->decryptbase64safeUrL().
Where base64 with + and / replaced with - and _
This conforms to rfc 4648.
The text was updated successfully, but these errors were encountered:
I try complete it.
$crypt->encryptBase64($text, $key, $safe); $crypt->decryptbase64($text, $key, $safe);
Sorry, something went wrong.
safe
Merge pull request #1359 from dreamsxin/1353
5442611
Implement #1353 add `safe` param for \Phalcon\Crypt::*Base64
Thx dreamsxin and phalcon!
No branches or pull requests
When I make hash($crypt->encryptBase64), for send url, hash look like
QGTBGorKoHBAGx/0qbtFjI6+iM3Eyggahl0KXER+iJUHUlrdcHb3zQF/VqGQeTJpfUYIi4kITryS0oQJLfVg==
Hash has special chars like '/' and '+'
It would be nice if we had something like $crypt->encryptbase64safeUrL() and $crypt->decryptbase64safeUrL().
Where base64 with + and / replaced with - and _
This conforms to rfc 4648.
The text was updated successfully, but these errors were encountered: