This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ======================= SEED Lab Task 5 - Windows PowerShell ======================= | |
# ECB/CBC via .NET; CFB/OFB via OpenSSL (if available). | |
# ===== 0) Chuẩn bị thư mục làm việc & đảm bảo plain.txt ≥ 1000 byte ===== | |
cd $HOME | |
$outDir = Join-Path $PWD 'seed-aes-out' | |
New-Item -ItemType Directory -Force -Path $outDir | Out-Null | |
# ĐẶT plain.txt bên trong seed-aes-out |