Webshare download password generator

This commit is contained in:
2024-11-09 01:02:06 +01:00
commit 3bb46cdfb1
6 changed files with 430 additions and 0 deletions

11
Program.cs Normal file
View File

@@ -0,0 +1,11 @@
using System;
using JellyfinCinemaStream.Webshare;
class Program
{
private static void Main(string[] args)
{
string a = LinkGenerator.CalculatePassword(downloadId: "12kRBqAYQS2", downloadName: "bIaFGdkvKiiTBo2_S3E", salt: "UX8y8Fpa");
Console.WriteLine(a);
}
}