RosettaCodeData/Task/SHA-1/Batch-File/sha-1.bat
2026-04-30 12:34:36 -04:00

8 lines
137 B
Batchfile

@echo off
setlocal enableextensions
set /p str=
pushd "%temp%"
<nul set/p"=%str%" > "%str%"
certutil -hashfile "%str%"
del "%str%"
pause