sprints work

This commit is contained in:
StellaOps Bot
2025-12-24 21:46:08 +02:00
parent 43e2af88f6
commit b9f71fc7e9
161 changed files with 29566 additions and 527 deletions

6
temp_hash.cs Normal file
View File

@@ -0,0 +1,6 @@
using System.Text;
var obj = new { message = "hello", number = 42 };
var hash = StellaOps.Canonical.Json.CanonJson.HashVersioned(obj, "stella:canon:v1");
Console.WriteLine($"Hash: {hash}");
var canonical = StellaOps.Canonical.Json.CanonJson.CanonicalizeVersioned(obj, "stella:canon:v1");
Console.WriteLine($"Canonical: {Encoding.UTF8.GetString(canonical)}");