Skip to content

Commit

Permalink
Fix build after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
nguerrera committed Jan 15, 2025
1 parent 35e69e5 commit 4e56028
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Cask/Polyfill.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,11 @@ public static string ToBase64String(ReadOnlySpan<byte> bytes)
{
return Bcl_Convert.ToBase64String(bytes.ToArray());
}

public static byte[] FromBase64String(string base64)
{
return Bcl_Convert.FromBase64String(base64);
}
}

internal static class RandomNumberGenerator
Expand Down

0 comments on commit 4e56028

Please sign in to comment.