Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
270 changed files with 13660 additions and 98 deletions
Showing only changes of commit 182235c4cd - Show all commits

View File

@ -25,6 +25,10 @@ public static class GeneratorKey
.ToArray()); .ToArray());
} }
public static string GenerateAlphaNumericBase32Compatible(int size, string? excludes = null,
string? includes = null) =>
GenerateAlphaNumeric(size, excludes + "0189", includes);
public static ReadOnlySpan<byte> GenerateBytes(int size) public static ReadOnlySpan<byte> GenerateBytes(int size)
{ {
var key = new byte[size]; var key = new byte[size];