Skip to content

Commit b3309e0

Browse files
feature/security-token (#65)
Removed test code from Program.
1 parent f17597c commit b3309e0

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

OnixLabs.Playground/Program.cs

-22
Original file line numberDiff line numberDiff line change
@@ -12,33 +12,11 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
using System;
16-
using OnixLabs.Core;
17-
using OnixLabs.Security;
18-
1915
namespace OnixLabs.Playground;
2016

2117
internal static class Program
2218
{
2319
private static void Main()
2420
{
25-
int[] lengths = [1, 2, 4, 8, 16, 32, 64, 128];
26-
int[] seeds = [0, 4, 7, 9, 123, 256, 721, 999];
27-
28-
foreach (int length in lengths)
29-
{
30-
foreach (int seed in seeds)
31-
{
32-
string token = SecurityTokenBuilder
33-
.CreatePseudoRandom(length, seed)
34-
.UseAlphaNumericCharacters()
35-
.UseExtendedSpecialCharacters()
36-
.ToSecurityToken()
37-
.ToString()
38-
.ToEscapedString();
39-
40-
Console.WriteLine($"[InlineData({length}, {seed}, \"{token}\")]");
41-
}
42-
}
4321
}
4422
}

0 commit comments

Comments
 (0)