Skip to content

Commit b98de4f

Browse files
committed
Update docs for base64 filters
1 parent 37b0378 commit b98de4f

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

docs/filters.md

+24-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Decode a base 64 encoded string into bytes.
6767
GET https://example.org/api
6868
HTTP 200
6969
[Asserts]
70-
jsonpath "$.token" base64Decode == hex,e4bda0e5a5bde4b896e7958c;
70+
jsonpath "$.token" base64Decode == hex,3c3c3f3f3f3e3e;
7171
```
7272

7373
### base64Encode
@@ -78,7 +78,29 @@ Encode bytes into base 64 encoded string.
7878
GET https://example.org/api
7979
HTTP 200
8080
[Asserts]
81-
bytes base64Encode == "5L2g5aW95LiW55WM"
81+
bytes base64Encode == "PDw/Pz8+Pg=="
82+
```
83+
84+
### base64UrlSafeDecode
85+
86+
Decode a base 64 encoded string without padding into bytes.
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 url safe base 64 encoded string without padding.
98+
99+
```hurl
100+
GET https://example.org/api
101+
HTTP 200
102+
[Asserts]
103+
bytes base64UrlSafeEncode == "PDw_Pz8-Pg"
82104
```
83105

84106
### count

0 commit comments

Comments
 (0)