@@ -61,24 +61,46 @@ jsonpath "$.books" count == 12
61
61
62
62
### base64Decode
63
63
64
- Decode a base 64 encoded string into bytes.
64
+ Decode a [ Base64 encoded string] into bytes.
65
65
66
66
``` hurl
67
67
GET https://example.org/api
68
68
HTTP 200
69
69
[Asserts]
70
- jsonpath "$.token" base64Decode == hex,e4bda0e5a5bde4b896e7958c ;
70
+ jsonpath "$.token" base64Decode == hex,3c3c3f3f3f3e3e ;
71
71
```
72
72
73
73
### base64Encode
74
74
75
- Encode bytes into base 64 encoded string.
75
+ Encode bytes into [ Base64 encoded string] .
76
76
77
77
``` hurl
78
78
GET https://example.org/api
79
79
HTTP 200
80
80
[Asserts]
81
- bytes base64Encode == "5L2g5aW95LiW55WM"
81
+ bytes base64Encode == "PDw/Pz8+Pg=="
82
+ ```
83
+
84
+ ### base64UrlSafeDecode
85
+
86
+ Decode a Base64 encoded string into bytes (using [ Base64 URL safe encoding] ).
87
+
88
+ ``` hurl
89
+ GET https://example.org/api
90
+ HTTP 200
91
+ [Asserts]
92
+ jsonpath "$.token" base64UrlSafeDecode == hex,3c3c3f3f3f3e3e;
93
+ ```
94
+
95
+ ### base64UrlSafeEncode
96
+
97
+ Encode bytes into Base64 encoded string (using [ Base64 URL safe encoding] ).
98
+
99
+ ``` hurl
100
+ GET https://example.org/api
101
+ HTTP 200
102
+ [Asserts]
103
+ bytes base64UrlSafeEncode == "PDw_Pz8-Pg"
82
104
```
83
105
84
106
### count
@@ -331,3 +353,5 @@ bytes decode "gb2312" xpath "string(//body)" == "你好世界"
331
353
[ a specification format ] : https://docs.rs/chrono/latest/chrono/format/strftime/index.html
332
354
[ XPath ] : https://en.wikipedia.org/wiki/XPath
333
355
[ JSONPath ] : https://goessner.net/articles/JsonPath/
356
+ [ Base64 encoded string ] : https://datatracker.ietf.org/doc/html/rfc4648#section-4
357
+ [ Base64 URL safe encoding ] : https://datatracker.ietf.org/doc/html/rfc4648#section-5
0 commit comments