Sto verificando gli hash dei file usando diversi algoritmi in PowerShell. Quando uso MacTripleDes, ottengo sempre hash diversi. Tutti gli altri, come SHA256 o MD5, danno sempre risposte affidabili. Potresti riuscire a replicare il problema sul tuo computer:
"this is a test" | out-file test.txt
get-filehash test.txt -algorithm sha256
get-filehash test.txt -algorithm sha256
get-filehash test.txt -algorithm mactripledes
get-filehash test.txt -algorithm mactripledes
Ottengo gli stessi valori di hash per i primi due hash, ma valori diversi per i secondi due hash. MacTripleDes dovrebbe essere usato in modo diverso?
Algorithm Hash Path
--------- ---- ----
SHA256 3F8CB2CDF03347329CAB0C80A6CE3B01EF3B17AF02E0F6E101FA67CE63729F51 C:\temp\test.txt
SHA256 3F8CB2CDF03347329CAB0C80A6CE3B01EF3B17AF02E0F6E101FA67CE63729F51 C:\temp\test.txt
MACTRIPLEDES 904D74A529C7A739 C:\temp\test.txt
MACTRIPLEDES AF720778A2C878A2 C:\temp\test.txt
Get-FileHash
cmdlet non sembra supportare un parametro chiave.