2020-03-12 10:35:30 +08:00
|
|
|
@echo off
|
|
|
|
set /P key=Please input key and press Enter:
|
|
|
|
if "%key%"=="" set key=0
|
|
|
|
set /P awbKey=Please input awbKey and press Enter:
|
|
|
|
if "%awbKey%"=="" set awbKey=0
|
|
|
|
node.exe "%~dp0src\index.js" decrypt_hca -k %key% -w %awbKey% %*
|
|
|
|
pause
|