migrating

This commit is contained in:
2026-05-26 22:08:21 -06:00
commit 43781ff018
30 changed files with 352 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
$bytes = 24
[System.Security.Cryptography.RNGCryptoServiceProvider] $rng = New-Object System.Security.Cryptography.RNGCryptoServiceProvider
$rndbytes = New-Object byte[] $bytes
$rng.GetBytes($rndbytes)
[System.IO.File]::WriteAllBytes("$PWD\test.txt", $rndbytes)