当前位置: 首页 > 工具软件 > Chilkat > 使用案例 >

c++ chilkat-9.5.0 库使用CkZipW压缩包验证密码

莘睿
2023-12-01


void VerifyPassword()
{
    CkZipW zip;
    if (zip.UnlockComponent(L"jTriol.ZP10899_uxBpnXXXXXX"))
    {
        bool success = zip.OpenZip(L"C:/Users/14713/Desktop/test.zip");
        if (success != true) {
            std::cout << zip.lastErrorText() << "\r\n";
            return;
        }
        zip.put_DecryptPassword(L"123456");

        bool passwordOk;
        passwordOk = zip.VerifyPassword();
        if (passwordOk == true) 
        {
            //操作压缩包
        }
        else 
        {
            
        }

        zip.CloseZip();
    }
}

int main()
{
    VerifyPassword();
    return 0;
}

 类似资料: