Hacker News new | ask | show | jobs
by littlecranky67 1109 days ago
I sucessfully develop .NET REST APIs using ASP.NET Core since .NET 5 (and mostly using minimal APIs introduced in .NET 6) on my Mac using VSCode, Entity Framework Core (with Postgres+SQLite) and deploy it to Ubuntu VPSes. Flawless, and the only issue I ever encountered is rather fringe: I couldn't use AES128GCM algo for JWE token encryption, as it is only supported on Windows. Using the APIs on Linux/macOS will throw an Exception. I switched to AES128-CBC-HMAC instead for my JWE tokens, no big deal.