1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 12:37:44 +00:00

AK+LibWeb: Move decode forgiving base64 under Web::Infra namespace

Since the forgiving base64 is part of the web infra standard
This commit is contained in:
Arda Cinar 2023-01-10 11:49:06 +03:00 committed by Linus Groh
parent 4ab2954210
commit 283187afc5
6 changed files with 133 additions and 101 deletions

View file

@ -40,8 +40,6 @@ consteval auto base64_lookup_table()
[[nodiscard]] ErrorOr<ByteBuffer> decode_base64(StringView);
[[nodiscard]] ErrorOr<ByteBuffer> decode_forgiving_base64(StringView);
[[nodiscard]] ErrorOr<String> encode_base64(ReadonlyBytes);
}