Release v1.0.0 #16
@ -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];
|
||||||
|
Reference in New Issue
Block a user