Skip to content

Commit

Permalink
Update hash.cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
diev committed Jul 9, 2024
1 parent 31dd76f commit c362306
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,8 +233,9 @@
Для удобства добавлены макрос `CalcHash` в Api5704.xlsm (указать файл в
диалоге и скопипастить из окна ввода.

Также добавлен `hash.cmd`, которому можно указать файл параметром,
и он запишет рядом с исходным файл `.txt`, с кодом уже в нижнем регистре.
Также добавлен `hash.cmd`, который надо закинуть в папку с PDF, и он
посчитает и запишет к каждому рядом файл `.txt`, с кодом уже в нижнем
регистре.

## Проверка ХэшКода на сервисе Госуслуг

Expand Down
16 changes: 15 additions & 1 deletion hash.cmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
@echo off
"C:\Program Files (x86)\Crypto Pro\CSP\cpverify.exe" -logfile "%~1.txt" -mk -alg GR3411_2012_256 %1
echo Calc HashCode for Credit Bureau

if not exist "C:\Program Files (x86)\Crypto Pro\CSP\cpverify.exe" (
echo Error: Crypto Pro not found.
goto :eof
)

for %%f in (*.pdf) do call :hash "%%f"
goto :eof

:hash
echo File: %1

"C:\Program Files (x86)\Crypto Pro\CSP\cpverify.exe" -mk -alg GR3411_2012_256 %1 > "%~1.txt"

rem Convert to lower case

Expand All @@ -12,3 +25,4 @@ del %Temp%\%hash%

echo %hash2%>"%~1.txt"
echo %hash2%
goto :eof

0 comments on commit c362306

Please sign in to comment.