feat(cs): C# Done.

This commit is contained in:
KyMAN 2026-04-07 07:14:02 +02:00
parent 652867b554
commit 58a3938f38
96 changed files with 8263 additions and 6 deletions

271
CSharp/AnyankaKeys.cs Normal file
View File

@ -0,0 +1,271 @@
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Text.RegularExpressions;
using System.Text;
namespace Anyanka{
public class AnyankaKeys{
public static readonly char[] ALPHABET = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz".ToCharArray();
public static readonly byte[] PRIVATE_KEY = Enumerable.Range(0, 0x100).Select<int, byte>(i => (byte)i).ToArray<byte>();
const int MULTIPLIER = 1;
const byte MULTIPLIER_JUMPS = 3;
const byte MULTIPLIER_JUMP = 7;
public static readonly uint[] PRIMES = new uint[]{
0x3FFFFFFB, 0x3FFFFF29, 0x3FFFFF0B,
0x2FFFFFFF, 0x2FFFFF5B, 0x1FFFFFFF,
0x279DB13D, 0x279DB113,
0x2AAAAAAB, 0x1555556B, 0x27D4EB2F, 0x165667B1,
0x1000007F, 0x3B9ACA07, 0x01000193, 0x1EADBEEF, 0x0AFEBABE, 0x0BADC0DE, 0x3B9AC9C1, 0x1D295C4D, 0x990BF9F, 0x1CFAA2DB,
0xDEADBEEF, 0xCAFEBABF, 0xBAADF00D
};
public static readonly double LOGARITHM_256 = Math.Log(0x100);
public static readonly Regex RE_KEY = new Regex(@"^[a-z_][a-z0-9_]*$", RegexOptions.IgnoreCase | RegexOptions.Compiled);
public delegate byte ChangeBaseInputHandler<T>(T value);
public delegate void ChangeBaseOutputHandler(byte value);
private char[] alphabet;
private Dictionary<char, int> dictionary;
private byte[] private_key;
private int multiplier;
private byte multiplier_jumps;
private byte multiplier_jump;
private uint[] primes;
private int _base;
private int encrypt_i = 0;
private byte[] password = new byte[]{0};
public AnyankaKeys(object? inputs = null){
alphabet = unique<char>(get_array<char>(get<object>("alphabet", inputs, ALPHABET) ?? ALPHABET));
dictionary = new Dictionary<char, int>();
private_key = get_numbers<byte>(get<object>("private_key", inputs, PRIVATE_KEY) ?? PRIVATE_KEY);
multiplier = get_number<int>(get<object>("multiplier", inputs, MULTIPLIER) ?? MULTIPLIER);
multiplier_jumps = get_number<byte>(get<object>("multiplier_jumps", inputs, MULTIPLIER_JUMPS) ?? MULTIPLIER_JUMPS);
multiplier_jump = get_number<byte>(get<object>("multiplier_jump", inputs, MULTIPLIER_JUMP) ?? MULTIPLIER_JUMP);
primes = get_numbers<uint>(get<object>("primes", inputs, PRIMES) ?? PRIMES);
_base = get_number<int>(get<object>("base", inputs, alphabet.Length) ?? alphabet.Length);
for(int i = 0; i < alphabet.Length; i++)
dictionary[alphabet[i]] = i;
set_password(get<string>("password", inputs, "") ?? "");
if(_base < alphabet.Length)
_base = alphabet.Length;
}
public void set_password(string password){
List<byte> changed = new List<byte>();
if(!string.IsNullOrEmpty(password))
change_base<char>(password, _base, 0x100, (char value) => (byte)value, (byte value) => changed.Add(value));
if(changed.Count == 0)
changed.Add(0);
this.password = changed.ToArray<byte>();
}
private uint get_multiplier(int i){
uint value = (uint)(i + multiplier + primes[
i = (i + multiplier_jump) % primes.Length
]) & 0x3FFFFFFF;
for (int j = 0; j < multiplier_jumps; j++){
int shift = 13 + i % 8;
value = ((value ^ (
(i & 1) == 1 ? value >> shift : value << shift
)) + primes[
i = (i + multiplier_jump) % primes.Length
]) & 0x3FFFFFFF;
}
return value;
}
public string encrypt(string data){
int i = (int)(get_multiplier(encrypt_i + data.Length + (int)(DateTime.Now.Ticks % 1000)) % _base);
string summatory = alphabet[i].ToString();
byte[] bytes = Encoding.UTF8.GetBytes(data);
int j = (int)Math.Ceiling(bytes.Length * LOGARITHM_256 / Math.Log(_base)) + 2;
char[] encrypted = new char[j];
encrypt_i = (encrypt_i + i) % _base;
change_base<byte>(bytes, _base, 0x100, (byte value) => value, (byte value) => {
uint multiplier = get_multiplier(i ++);
encrypted[-- j] = alphabet[(multiplier + value + private_key[
multiplier / _base % private_key.Length
] + password[multiplier % password.Length]) % _base];
});
return summatory + new string(encrypted, j, encrypted.Length - j);
}
public string decrypt(string data){
int i = dictionary[data[0]] + data.Length - 1;
int j = (int)Math.Ceiling(data.Length * Math.Log(_base) / LOGARITHM_256) + 2;
byte[] decrypted = new byte[j];
change_base<char>(data.Substring(1), 0x100, _base, (char value) => {
uint multiplier = get_multiplier(-- i);
return (byte)(((dictionary[value] - private_key[
multiplier / _base % private_key.Length
] - multiplier - password[multiplier % password.Length]) % _base + _base) % _base);
}, (byte value) => {
decrypted[-- j] = value;
});
return Encoding.UTF8.GetString(decrypted, j, decrypted.Length - j);
}
public static List<string> get_keys(object? items){
List<string> keys = new List<string>();
if(items is string item_string){
if(RE_KEY.IsMatch(item_string))
keys.Add(item_string);
}else if(items is IEnumerable<string> strings){
foreach(string item_i in strings)
if(!keys.Contains(item_i) && RE_KEY.IsMatch(item_i))
keys.Add(item_i);
}else if(items is IEnumerable<object?> list)
foreach(object? item in list){
if(item == null)
continue;
if(item is string string_item){
if(!keys.Contains(string_item) && RE_KEY.IsMatch(string_item))
keys.Add(string_item);
}else
foreach(string key in get_keys(item))
if(!keys.Contains(key) && RE_KEY.IsMatch(key))
keys.Add(key);
}
return keys;
}
public static List<Dictionary<string, object?>> get_dictionaries(object? items){
List<Dictionary<string, object?>> dictionaries = new List<Dictionary<string, object?>>();
if(items is Dictionary<string, object?> dictionary)
dictionaries.Add(dictionary);
else if(items is IEnumerable<object?> list)
foreach(object? item in list)
dictionaries.AddRange(get_dictionaries(item));
return dictionaries;
}
public static T? get<T>(object keys, object? dictionaries, T? _default = default(T?)){
List<string> keys_list = get_keys(keys);
if(keys_list.Count != 0)
foreach(Dictionary<string, object?> dictionary in get_dictionaries(dictionaries))
foreach(string key in keys_list)
if(dictionary.TryGetValue(key, out object? value) && value is T typed)
return typed;
return _default;
}
public static T[] unique<T>(IEnumerable<T> items){
return items.Distinct<T>().ToArray<T>();
}
public static void change_base<T>(
IEnumerable<T> data,
int to_base,
int from_base = 0x100,
ChangeBaseInputHandler<T>? input_handler = null,
ChangeBaseOutputHandler? output_handler = null
){
int stack = 0;
bool has = false;
if(input_handler == null)
input_handler = (T value) => Convert.ToByte(value);
if(output_handler == null)
output_handler = (byte value) => { };
foreach(T value in data){
stack = stack * from_base + input_handler(value);
while(stack >= to_base){
has = true;
output_handler((byte)(stack % to_base));
stack /= to_base;
}
}
if(!has || stack != 0)
output_handler((byte)stack);
}
public static T[] get_array<T>(object data){
if(data is T item_t)
return new T[]{item_t};
if(data is string text && typeof(T) == typeof(char))
return text.ToCharArray() as T[] ?? new T[]{};
if(data is IEnumerable<T> list_t)
return list_t.ToArray();
if(data is IEnumerable list){
List<T> results = new List<T>();
foreach(object? item in list)
if(item is T typed)
results.Add(typed);
return results.ToArray();
}
return new T[]{};
}
public static T get_number<T>(object data){
if(data is T item)
return item;
return (T)Convert.ChangeType(data, typeof(T));
}
public static T[] get_numbers<T>(object data){
if(data is T item_t)
return new T[]{item_t};
if(data is T[] item_set)
return item_set;
if(data is IEnumerable list){
List<T> results = new List<T>();
foreach(object? item in list)
if(item != null)
results.Add(get_number<T>(item));
return results.ToArray();
}
return new T[]{};
}
}
}

23
CSharp/AnyankaKeys.csproj Executable file
View File

@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net10.0;net462</TargetFrameworks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<RootNamespace>AnP</RootNamespace>
<AssemblyName>AnP</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
</ItemGroup>
</Project>

3
CSharp/AnyankaKeys.slnx Normal file
View File

@ -0,0 +1,3 @@
<Solution>
<Project Path="AnyankaKeys.csproj" />
</Solution>

52
CSharp/Program.cs Executable file
View File

@ -0,0 +1,52 @@
using System;
namespace Anyanka{
class Program{
static void Main(string[] args){
// Console.WriteLine("Hello World!");
// test_basic();
test_cross_platforms();
}
public static void test_basic(){
AnyankaKeys anyanka = new AnyankaKeys("password");
foreach(string example in new List<string>{
"Hello, World!",
"This is a test.",
"AnyankaKeys is working!",
"¡Ésto va con ñ! 🚀"
}){
string encrypted = anyanka.encrypt(example);
string decrypted = anyanka.decrypt(encrypted);
Console.WriteLine($"Example: {example}");
Console.WriteLine($"Encrypted: {encrypted}");
Console.WriteLine($"Decrypted: {decrypted}");
Console.WriteLine();
}
}
public static void test_cross_platforms(){
AnyankaKeys anyanka = new AnyankaKeys();
foreach(string encrypted in new List<string>{
"Ddsz2vfFpj4eVh5DLFu",
"nsxC3wVPqG6gm49Vnws9hB",
"2V1HPCz7ufLEHDUib4uTbksdoZE3XxFv3",
"CU4jGC9QSJ5HfUdxEqed5VEQdkYPYF5gg"
})
Console.WriteLine($"[{encrypted}, {anyanka.decrypt(encrypted)}]");
}
}
}

BIN
CSharp/bin/Debug/net10.0/AnP Executable file

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,12 @@
{
"runtimeOptions": {
"tfm": "net10.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,416 @@
{
"format": 1,
"restore": {
"/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj": {}
},
"projects": {
"/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"projectName": "AnP",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"packagesPath": "/home/kyman/.nuget/packages/",
"outputPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/",
"projectStyle": "PackageReference",
"crossTargeting": true,
"configFilePaths": [
"/home/kyman/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net10.0",
"net462"
],
"sources": {
"/usr/lib/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net10.0": {
"targetAlias": "net10.0",
"projectReferences": {}
},
"net462": {
"targetAlias": "net462",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "all"
},
"SdkAnalysisLevel": "10.0.100"
},
"frameworks": {
"net10.0": {
"targetAlias": "net10.0",
"dependencies": {
"Microsoft.Data.SqlClient": {
"target": "Package",
"version": "[5.1.0, )"
},
"Microsoft.Extensions.Configuration": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.Configuration.Json": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.DependencyInjection": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.Hosting": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.Logging.Console": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.NETFramework.ReferenceAssemblies": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[1.0.3, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.104/PortableRuntimeIdentifierGraph.json",
"packagesToPrune": {
"Microsoft.CSharp": "(,4.7.32767]",
"Microsoft.VisualBasic": "(,10.4.32767]",
"Microsoft.Win32.Primitives": "(,4.3.32767]",
"Microsoft.Win32.Registry": "(,5.0.32767]",
"runtime.any.System.Collections": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.any.System.Globalization": "(,4.3.32767]",
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.any.System.IO": "(,4.3.32767]",
"runtime.any.System.Reflection": "(,4.3.32767]",
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.any.System.Runtime": "(,4.3.32767]",
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
"runtime.aot.System.Collections": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.aot.System.Globalization": "(,4.3.32767]",
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.aot.System.IO": "(,4.3.32767]",
"runtime.aot.System.Reflection": "(,4.3.32767]",
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.aot.System.Runtime": "(,4.3.32767]",
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.unix.System.Console": "(,4.3.32767]",
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.win.System.Console": "(,4.3.32767]",
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
"System.AppContext": "(,4.3.32767]",
"System.Buffers": "(,5.0.32767]",
"System.Collections": "(,4.3.32767]",
"System.Collections.Concurrent": "(,4.3.32767]",
"System.Collections.Immutable": "(,10.0.32767]",
"System.Collections.NonGeneric": "(,4.3.32767]",
"System.Collections.Specialized": "(,4.3.32767]",
"System.ComponentModel": "(,4.3.32767]",
"System.ComponentModel.Annotations": "(,4.3.32767]",
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
"System.ComponentModel.Primitives": "(,4.3.32767]",
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
"System.Console": "(,4.3.32767]",
"System.Data.Common": "(,4.3.32767]",
"System.Data.DataSetExtensions": "(,4.4.32767]",
"System.Diagnostics.Contracts": "(,4.3.32767]",
"System.Diagnostics.Debug": "(,4.3.32767]",
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
"System.Diagnostics.Process": "(,4.3.32767]",
"System.Diagnostics.StackTrace": "(,4.3.32767]",
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
"System.Diagnostics.Tools": "(,4.3.32767]",
"System.Diagnostics.TraceSource": "(,4.3.32767]",
"System.Diagnostics.Tracing": "(,4.3.32767]",
"System.Drawing.Primitives": "(,4.3.32767]",
"System.Dynamic.Runtime": "(,4.3.32767]",
"System.Formats.Asn1": "(,10.0.32767]",
"System.Formats.Tar": "(,10.0.32767]",
"System.Globalization": "(,4.3.32767]",
"System.Globalization.Calendars": "(,4.3.32767]",
"System.Globalization.Extensions": "(,4.3.32767]",
"System.IO": "(,4.3.32767]",
"System.IO.Compression": "(,4.3.32767]",
"System.IO.Compression.ZipFile": "(,4.3.32767]",
"System.IO.FileSystem": "(,4.3.32767]",
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
"System.IO.IsolatedStorage": "(,4.3.32767]",
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
"System.IO.Pipelines": "(,10.0.32767]",
"System.IO.Pipes": "(,4.3.32767]",
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
"System.Linq": "(,4.3.32767]",
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
"System.Linq.Expressions": "(,4.3.32767]",
"System.Linq.Parallel": "(,4.3.32767]",
"System.Linq.Queryable": "(,4.3.32767]",
"System.Memory": "(,5.0.32767]",
"System.Net.Http": "(,4.3.32767]",
"System.Net.Http.Json": "(,10.0.32767]",
"System.Net.NameResolution": "(,4.3.32767]",
"System.Net.NetworkInformation": "(,4.3.32767]",
"System.Net.Ping": "(,4.3.32767]",
"System.Net.Primitives": "(,4.3.32767]",
"System.Net.Requests": "(,4.3.32767]",
"System.Net.Security": "(,4.3.32767]",
"System.Net.ServerSentEvents": "(,10.0.32767]",
"System.Net.Sockets": "(,4.3.32767]",
"System.Net.WebHeaderCollection": "(,4.3.32767]",
"System.Net.WebSockets": "(,4.3.32767]",
"System.Net.WebSockets.Client": "(,4.3.32767]",
"System.Numerics.Vectors": "(,5.0.32767]",
"System.ObjectModel": "(,4.3.32767]",
"System.Private.DataContractSerialization": "(,4.3.32767]",
"System.Private.Uri": "(,4.3.32767]",
"System.Reflection": "(,4.3.32767]",
"System.Reflection.DispatchProxy": "(,6.0.32767]",
"System.Reflection.Emit": "(,4.7.32767]",
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
"System.Reflection.Extensions": "(,4.3.32767]",
"System.Reflection.Metadata": "(,10.0.32767]",
"System.Reflection.Primitives": "(,4.3.32767]",
"System.Reflection.TypeExtensions": "(,4.3.32767]",
"System.Resources.Reader": "(,4.3.32767]",
"System.Resources.ResourceManager": "(,4.3.32767]",
"System.Resources.Writer": "(,4.3.32767]",
"System.Runtime": "(,4.3.32767]",
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
"System.Runtime.Extensions": "(,4.3.32767]",
"System.Runtime.Handles": "(,4.3.32767]",
"System.Runtime.InteropServices": "(,4.3.32767]",
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
"System.Runtime.Loader": "(,4.3.32767]",
"System.Runtime.Numerics": "(,4.3.32767]",
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
"System.Runtime.Serialization.Json": "(,4.3.32767]",
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
"System.Security.AccessControl": "(,6.0.32767]",
"System.Security.Claims": "(,4.3.32767]",
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
"System.Security.Cryptography.Cng": "(,5.0.32767]",
"System.Security.Cryptography.Csp": "(,4.3.32767]",
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
"System.Security.Principal": "(,4.3.32767]",
"System.Security.Principal.Windows": "(,5.0.32767]",
"System.Security.SecureString": "(,4.3.32767]",
"System.Text.Encoding": "(,4.3.32767]",
"System.Text.Encoding.CodePages": "(,10.0.32767]",
"System.Text.Encoding.Extensions": "(,4.3.32767]",
"System.Text.Encodings.Web": "(,10.0.32767]",
"System.Text.Json": "(,10.0.32767]",
"System.Text.RegularExpressions": "(,4.3.32767]",
"System.Threading": "(,4.3.32767]",
"System.Threading.AccessControl": "(,10.0.32767]",
"System.Threading.Channels": "(,10.0.32767]",
"System.Threading.Overlapped": "(,4.3.32767]",
"System.Threading.Tasks": "(,4.3.32767]",
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
"System.Threading.Thread": "(,4.3.32767]",
"System.Threading.ThreadPool": "(,4.3.32767]",
"System.Threading.Timer": "(,4.3.32767]",
"System.ValueTuple": "(,4.5.32767]",
"System.Xml.ReaderWriter": "(,4.3.32767]",
"System.Xml.XDocument": "(,4.3.32767]",
"System.Xml.XmlDocument": "(,4.3.32767]",
"System.Xml.XmlSerializer": "(,4.3.32767]",
"System.Xml.XPath": "(,4.3.32767]",
"System.Xml.XPath.XDocument": "(,5.0.32767]"
}
},
"net462": {
"targetAlias": "net462",
"dependencies": {
"Microsoft.Data.SqlClient": {
"target": "Package",
"version": "[5.1.0, )"
},
"Microsoft.Extensions.Configuration": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.Configuration.Json": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.DependencyInjection": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.Hosting": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.Extensions.Logging.Console": {
"target": "Package",
"version": "[8.0.0, )"
},
"Microsoft.NETFramework.ReferenceAssemblies": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[1.0.3, )"
}
},
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/10.0.104/RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/kyman/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/kyman/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/kyman/.nuget/packages/" />
</ItemGroup>
<ImportGroup Condition=" '$(TargetFramework)' == 'net10.0' AND '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props')" />
</ImportGroup>
<ImportGroup Condition=" '$(TargetFramework)' == 'net462' AND '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props')" />
</ImportGroup>
</Project>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(TargetFramework)' == 'net10.0' AND '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net461/1.0.3/build/Microsoft.NETFramework.ReferenceAssemblies.net461.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net461/1.0.3/build/Microsoft.NETFramework.ReferenceAssemblies.net461.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/8.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/8.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets')" />
</ImportGroup>
<ImportGroup Condition=" '$(TargetFramework)' == 'net462' AND '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)system.text.json/8.0.0/buildTransitive/net462/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/8.0.0/buildTransitive/net462/System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net462/1.0.3/build/Microsoft.NETFramework.ReferenceAssemblies.net462.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net462/1.0.3/build/Microsoft.NETFramework.ReferenceAssemblies.net462.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net462/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/8.0.0/buildTransitive/net462/Microsoft.Extensions.Options.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/8.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/8.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.0/buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/8.0.0/buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.data.sqlclient.sni/5.1.0/buildTransitive/net462/Microsoft.Data.SqlClient.SNI.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.data.sqlclient.sni/5.1.0/buildTransitive/net462/Microsoft.Data.SqlClient.SNI.targets')" />
</ImportGroup>
</Project>

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("AnP")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+652867b5544454f9add8d8b0746325f19a175d4f")]
[assembly: System.Reflection.AssemblyProductAttribute("AnP")]
[assembly: System.Reflection.AssemblyTitleAttribute("AnP")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generado por la clase WriteCodeFragment de MSBuild.

View File

@ -0,0 +1 @@
df3811fdfd17b77dd11dbf563a3c4471b47f24aac25653ea1f305b442f7ea03c

View File

@ -0,0 +1,17 @@
is_global = true
build_property.TargetFramework = net10.0
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v10.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = AnP
build_property.ProjectDir = /media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =

View File

@ -0,0 +1,8 @@
// <auto-generated/>
global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Linq;
global using System.Net.Http;
global using System.Threading;
global using System.Threading.Tasks;

Binary file not shown.

View File

@ -0,0 +1 @@
17b322209d5c8f485a1b9377e2fe4d71b5d63e53ed1c701c369f0060b653b7a1

View File

@ -0,0 +1,80 @@
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnyankaKeys.csproj.AssemblyReference.cache
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnyankaKeys.GeneratedMSBuildEditorConfig.editorconfig
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnyankaKeys.AssemblyInfoInputs.cache
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnyankaKeys.AssemblyInfo.cs
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnyankaKeys.csproj.CoreCompileInputs.cache
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/AnP
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/AnP.deps.json
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/AnP.runtimeconfig.json
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/AnP.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/AnP.pdb
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Azure.Core.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Azure.Identity.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Bcl.AsyncInterfaces.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Data.SqlClient.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Binder.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.CommandLine.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.FileExtensions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.Json.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Configuration.UserSecrets.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Abstractions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.FileProviders.Physical.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.FileSystemGlobbing.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Hosting.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Hosting.Abstractions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Logging.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Logging.Configuration.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Logging.Console.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Logging.Debug.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventLog.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Logging.EventSource.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Options.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Extensions.Primitives.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Identity.Client.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Identity.Client.Extensions.Msal.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.SqlServer.Server.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/Microsoft.Win32.SystemEvents.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Diagnostics.EventLog.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Drawing.Common.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Memory.Data.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Runtime.Caching.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Security.Permissions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/System.Windows.Extensions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/bin/Debug/net10.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnyankaK.DBB66C5D.Up2Date
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnP.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/refint/AnP.dll
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnP.pdb
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/AnyankaKeys.genruntimeconfig.cache
/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/obj/Debug/net10.0/ref/AnP.dll

View File

@ -0,0 +1 @@
ef4cee7f2d6ee5b1b3172f1c88dfe7b5706c882863afd2de5ca4f4a229b3972d

BIN
CSharp/obj/Debug/net10.0/apphost Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,187 @@
{
"version": 2,
"dgSpecHash": "tQAux2dw3Ac=",
"success": true,
"projectFilePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"expectedPackageFiles": [
"/home/kyman/.nuget/packages/azure.core/1.25.0/azure.core.1.25.0.nupkg.sha512",
"/home/kyman/.nuget/packages/azure.identity/1.7.0/azure.identity.1.7.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.bcl.asyncinterfaces/1.1.1/microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.bcl.asyncinterfaces/8.0.0/microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.data.sqlclient/5.1.0/microsoft.data.sqlclient.5.1.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.data.sqlclient.sni/5.1.0/microsoft.data.sqlclient.sni.5.1.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.1.0/microsoft.data.sqlclient.sni.runtime.5.1.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration/8.0.0/microsoft.extensions.configuration.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration.binder/8.0.0/microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration.commandline/8.0.0/microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration.environmentvariables/8.0.0/microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration.fileextensions/8.0.0/microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration.json/8.0.0/microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.configuration.usersecrets/8.0.0/microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.0/microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.0/microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.diagnostics/8.0.0/microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.diagnostics.abstractions/8.0.0/microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.fileproviders.abstractions/8.0.0/microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.fileproviders.physical/8.0.0/microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.filesystemglobbing/8.0.0/microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.hosting/8.0.0/microsoft.extensions.hosting.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.hosting.abstractions/8.0.0/microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.logging/8.0.0/microsoft.extensions.logging.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.0/microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.logging.configuration/8.0.0/microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.logging.console/8.0.0/microsoft.extensions.logging.console.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.logging.debug/8.0.0/microsoft.extensions.logging.debug.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.logging.eventlog/8.0.0/microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.logging.eventsource/8.0.0/microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.options/8.0.0/microsoft.extensions.options.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.options.configurationextensions/8.0.0/microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.extensions.primitives/8.0.0/microsoft.extensions.primitives.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identity.client/4.47.2/microsoft.identity.client.4.47.2.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identity.client.extensions.msal/2.19.3/microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identitymodel.abstractions/6.24.0/microsoft.identitymodel.abstractions.6.24.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.24.0/microsoft.identitymodel.jsonwebtokens.6.24.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identitymodel.logging/6.24.0/microsoft.identitymodel.logging.6.24.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identitymodel.protocols/6.24.0/microsoft.identitymodel.protocols.6.24.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.24.0/microsoft.identitymodel.protocols.openidconnect.6.24.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.identitymodel.tokens/6.24.0/microsoft.identitymodel.tokens.6.24.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.netframework.referenceassemblies/1.0.3/microsoft.netframework.referenceassemblies.1.0.3.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.netframework.referenceassemblies.net461/1.0.3/microsoft.netframework.referenceassemblies.net461.1.0.3.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.netframework.referenceassemblies.net462/1.0.3/microsoft.netframework.referenceassemblies.net462.1.0.3.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
"/home/kyman/.nuget/packages/system.configuration.configurationmanager/6.0.1/system.configuration.configurationmanager.6.0.1.nupkg.sha512",
"/home/kyman/.nuget/packages/system.diagnostics.diagnosticsource/8.0.0/system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.diagnostics.eventlog/8.0.0/system.diagnostics.eventlog.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.identitymodel.tokens.jwt/6.24.0/system.identitymodel.tokens.jwt.6.24.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
"/home/kyman/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512",
"/home/kyman/.nuget/packages/system.net.http/4.3.4/system.net.http.4.3.4.nupkg.sha512",
"/home/kyman/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.runtime.caching/6.0.0/system.runtime.caching.6.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.accesscontrol/6.0.0/system.security.accesscontrol.6.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.cryptography.protecteddata/4.7.0/system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.cryptography.protecteddata/6.0.0/system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.permissions/6.0.0/system.security.permissions.6.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.text.json/8.0.0/system.text.json.8.0.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"/home/kyman/.nuget/packages/system.valuetuple/4.5.0/system.valuetuple.4.5.0.nupkg.sha512",
"/home/kyman/.nuget/packages/system.windows.extensions/6.0.0/system.windows.extensions.6.0.0.nupkg.sha512"
],
"logs": [
{
"code": "NU1903",
"level": "Warning",
"message": "El paquete \"Azure.Identity\" 1.7.0 tiene una vulnerabilidad de gravedad alta conocida, https://github.com/advisories/GHSA-5mfx-4wcx-rv27",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "Azure.Identity",
"targetGraphs": [
".NETFramework,Version=v4.6.2",
"net10.0"
]
},
{
"code": "NU1902",
"level": "Warning",
"message": "El paquete \"Azure.Identity\" 1.7.0 tiene una vulnerabilidad de gravedad moderada conocida, https://github.com/advisories/GHSA-m5vv-6r4h-3vj9",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "Azure.Identity",
"targetGraphs": [
".NETFramework,Version=v4.6.2",
"net10.0"
]
},
{
"code": "NU1902",
"level": "Warning",
"message": "El paquete \"Azure.Identity\" 1.7.0 tiene una vulnerabilidad de gravedad moderada conocida, https://github.com/advisories/GHSA-wvxc-855f-jvrv",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "Azure.Identity",
"targetGraphs": [
".NETFramework,Version=v4.6.2",
"net10.0"
]
},
{
"code": "NU1903",
"level": "Warning",
"message": "El paquete \"Microsoft.Data.SqlClient\" 5.1.0 tiene una vulnerabilidad de gravedad alta conocida, https://github.com/advisories/GHSA-98g6-xh36-x2p7",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "Microsoft.Data.SqlClient",
"targetGraphs": [
".NETFramework,Version=v4.6.2",
"net10.0"
]
},
{
"code": "NU1902",
"level": "Warning",
"message": "El paquete \"Microsoft.IdentityModel.JsonWebTokens\" 6.24.0 tiene una vulnerabilidad de gravedad moderada conocida, https://github.com/advisories/GHSA-59j7-ghrg-fj52",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "Microsoft.IdentityModel.JsonWebTokens",
"targetGraphs": [
".NETFramework,Version=v4.6.2",
"net10.0"
]
},
{
"code": "NU1902",
"level": "Warning",
"message": "El paquete \"System.IdentityModel.Tokens.Jwt\" 6.24.0 tiene una vulnerabilidad de gravedad moderada conocida, https://github.com/advisories/GHSA-59j7-ghrg-fj52",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "System.IdentityModel.Tokens.Jwt",
"targetGraphs": [
".NETFramework,Version=v4.6.2",
"net10.0"
]
},
{
"code": "NU1903",
"level": "Warning",
"message": "El paquete \"System.Text.Json\" 8.0.0 tiene una vulnerabilidad de gravedad alta conocida, https://github.com/advisories/GHSA-8g4q-xg66-9fp4",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "System.Text.Json",
"targetGraphs": [
".NETFramework,Version=v4.6.2"
]
},
{
"code": "NU1903",
"level": "Warning",
"message": "El paquete \"System.Text.Json\" 8.0.0 tiene una vulnerabilidad de gravedad alta conocida, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w",
"projectPath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"warningLevel": 1,
"filePath": "/media/kyman/SSD2TB/git.lite/AnyankaKeys/CSharp/AnyankaKeys.csproj",
"libraryId": "System.Text.Json",
"targetGraphs": [
".NETFramework,Version=v4.6.2"
]
}
]
}

View File

@ -3,7 +3,7 @@
from typing import Any, Self, Callable, Optional, TypeVar, Iterable
from time import time
from re import compile as re_compile, Pattern as RePattern, I as RE_IgnoreCase
from re import compile as re_compile, Pattern as REPattern, I as RE_IgnoreCase
T = TypeVar("T", int, float, str, bytes)
@ -16,7 +16,7 @@ class AnyankaKeys:
)
ALPHABET:tuple[str] = tuple("123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz")
PRIVATE_KEY:tuple[int] = tuple(range(1, 0x100))
PRIVATE_KEY:tuple[int] = tuple(range(0, 0x100))
MULTIPLIER:int = 1
MULTIPLIER_JUMPS:int = 3
MULTIPLIER_JUMP:int = 7
@ -29,7 +29,7 @@ class AnyankaKeys:
0xDEADBEEF, 0xCAFEBABF, 0xBAADF00D
)
RE_KEY:RePattern = re_compile(r'^[a-z_][a-z0-9_]*$', RE_IgnoreCase)
RE_KEY:REPattern = re_compile(r'^[a-z_][a-z0-9_]*$', RE_IgnoreCase)
def __init__(self:Self, inputs:Optional[dict[str, Any|None]] = None) -> None:
@ -91,7 +91,7 @@ class AnyankaKeys:
summatory:str = self.__alphabet[i]
encrypted:list[str] = []
self.__encrypt_i += i
self.__encrypt_i = (self.__encrypt_i + i) % self.__base
i -= 1
def output_handler(value:int) -> None:

View File

@ -86,6 +86,21 @@ class Tests:
1000000007
)])
@staticmethod
def test_cross_platforms() -> None:
anyanka:AnyankaKeys = AnyankaKeys()
encrypted:str
for encrypted in (
"Ddsz2vfFpj4eVh5DLFu",
"nsxC3wVPqG6gm49Vnws9hB",
"2V1HPCz7ufLEHDUib4uTbksdoZE3XxFv3",
"CU4jGC9QSJ5HfUdxEqed5VEQdkYPYF5gg"
):
print([encrypted, anyanka.decrypt(encrypted).encode("Latin-1").decode("utf-8")])
# Tests.change_base()
Tests.basic_encript()
# Tests.basic_encript()
# Tests.get_hexadecimal()
Tests.test_cross_platforms()