Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Nanoid/Nanoid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ public static class SubAlphabets
/// The default alphabet used by Nanoid. Includes ascii digits, letters and the symbols '_' and '-'.
/// </summary>
public const string Default = SubAlphabets.Symbols + LettersAndDigits;

/// <summary>
/// English alphabet letters and digits without lookalikes: l, I, 0, O.
/// </summary>
public const string Base58 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
}

/// <summary>
Expand Down