20 lines
No EOL
601 B
C#
20 lines
No EOL
601 B
C#
using System.Security.Cryptography;
|
|
using Visus.Cuid;
|
|
|
|
namespace Iceshrimp.Backend.Core.Helpers;
|
|
|
|
public static class IdHelpers {
|
|
private const long Time2000 = 946684800000;
|
|
|
|
public static string GenerateSlowflakeId() {
|
|
var cuid = new Cuid2(16);
|
|
var now = (long)DateTime.UtcNow.Subtract(DateTime.UnixEpoch).TotalSeconds;
|
|
var time = Math.Max(now - Time2000, 0);
|
|
var timestamp = time.ToBase36().PadLeft(8, '0');
|
|
return timestamp + cuid;
|
|
}
|
|
|
|
public static string GenerateRandomString(int length) {
|
|
return Convert.ToBase64String(RandomNumberGenerator.GetBytes(length));
|
|
}
|
|
} |