mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:24:57 +00:00
AK: Change the signature of AK::encode_base64() to use Span.
This commit is contained in:
parent
5fa0fdb219
commit
abe925e4b0
5 changed files with 7 additions and 6 deletions
|
@ -86,7 +86,7 @@ ByteBuffer decode_base64(const StringView& input)
|
|||
return ByteBuffer::copy(output.data(), output.size());
|
||||
}
|
||||
|
||||
String encode_base64(const ByteBuffer& input)
|
||||
String encode_base64(ReadonlyBytes input)
|
||||
{
|
||||
StringBuilder output;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue