You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# for Windows
[Convert]::ToBase64String((1..32| ForEach-Object { Get-Random -Maximum 256 }))# for Linux/macOS/Git Bash
using System.Security.Cryptography;
var key = Convert.ToBase64String(RandomNumberGenerator.GetBytes(32));
Console.WriteLine(key);# run final command
openssl rand -base64 32
🚀 Suggested Roadmap
✅ Basic
Create api using app.MapGetapp.MapPostapp.MapPutapp.MapDelete in Program.cs