We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e970eb commit dfb3ec3Copy full SHA for dfb3ec3
contracts/utils/Base64.sol
@@ -23,6 +23,7 @@ library Base64 {
23
24
/**
25
* @dev Converts a `bytes` to its Bytes64Url `string` representation.
26
+ * Output is not padded with `=` as specified in https://www.rfc-editor.org/rfc/rfc4648[rfc4648].
27
*/
28
function encodeURL(bytes memory data) internal pure returns (string memory) {
29
return _encode(data, _TABLE_URL, false);
0 commit comments