35 lines
966 B
C#
35 lines
966 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace TJAPlayer3
|
|
{
|
|
internal class CCrypto
|
|
{
|
|
internal static readonly char[] chars =
|
|
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890".ToCharArray();
|
|
|
|
public static string GetUniqueKey(int size)
|
|
{
|
|
byte[] data = new byte[4 * size];
|
|
using (var crypto = RandomNumberGenerator.Create())
|
|
{
|
|
crypto.GetBytes(data);
|
|
}
|
|
StringBuilder result = new StringBuilder(size);
|
|
for (int i = 0; i < size; i++)
|
|
{
|
|
var rnd = BitConverter.ToUInt32(data, i * 4);
|
|
var idx = rnd % chars.Length;
|
|
|
|
result.Append(chars[idx]);
|
|
}
|
|
|
|
return result.ToString();
|
|
}
|
|
}
|
|
}
|