aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/http/Base64Url.php
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-10-13 12:07:13 +0200
committerArthurHoaro <arthur@hoa.ro>2020-10-13 12:07:13 +0200
commitd9f6275ebca035fec8331652c677981056793ccc (patch)
tree37a64baf4f0eba6b781040605965383d8aded2cc /application/http/Base64Url.php
parent38672ba0d1c722e5d6d33a58255ceb55e9410e46 (diff)
parentd63ff87a009313141ae684ec447b902562ff6ee7 (diff)
downloadShaarli-stable.tar.gz
Shaarli-stable.tar.zst
Shaarli-stable.zip
Merge branch 'v0.11' into stablestable
Diffstat (limited to 'application/http/Base64Url.php')
-rw-r--r--application/http/Base64Url.php35
1 files changed, 35 insertions, 0 deletions
diff --git a/application/http/Base64Url.php b/application/http/Base64Url.php
new file mode 100644
index 00000000..33fa7c1f
--- /dev/null
+++ b/application/http/Base64Url.php
@@ -0,0 +1,35 @@
1<?php
2
3namespace Shaarli\Http;
4
5/**
6 * URL-safe Base64 operations
7 *
8 * @see https://en.wikipedia.org/wiki/Base64#URL_applications
9 */
10class Base64Url
11{
12 /**
13 * Base64Url-encodes data
14 *
15 * @param string $data Data to encode
16 *
17 * @return string Base64Url-encoded data
18 */
19 public static function encode($data)
20 {
21 return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');
22 }
23
24 /**
25 * Decodes Base64Url-encoded data
26 *
27 * @param string $data Data to decode
28 *
29 * @return string Decoded data
30 */
31 public static function decode($data)
32 {
33 return base64_decode(str_pad(strtr($data, '-_', '+/'), strlen($data) % 4, '=', STR_PAD_RIGHT));
34 }
35}