File tree 1 file changed +24
-2
lines changed
1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Decode a base 64 encoded string into bytes.
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
@@ -78,7 +78,29 @@ Encode bytes into base 64 encoded string.
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 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"
82
104
```
83
105
84
106
### count
You can’t perform that action at this time.
0 commit comments