2019-10-03 19:54:27 +03:00

26 lines
725 B
C#

using System;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
namespace Server.RenamingObfuscation.Classes
{
public static class Utils
{
public static string GenerateRandomString()
{
var sb = new StringBuilder();
for (int i = 1; i <= random.Next(10,20); i++)
{
var randomCharacterPosition = random.Next(0, alphabet.Length);
sb.Append(alphabet[randomCharacterPosition]);
}
return sb.ToString();
}
private static readonly Random random = new Random();
const string alphabet = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM";
}
}