kastela-sdp / kastela-sdk-php
Kastela SDK for PHP
v0.6.3
2023-10-03 09:29 UTC
README
相关链接
安装
添加到 composer.json
{ "require": { ... "kastela-sdp/kastela-sdk-php": "0.6.2" } }
运行
php composher update
使用示例
使用 SDK 需要凭证,请到实体页面下载。
$kastelaClient = new Client("server.url", "ca/path.crt", "client/credential/path.crt", "client/credential/path.key", ); // decrypt data with id 1,2,3,4,5 $data = $kastelaClient->protection_open(new ProtectionOpenInput("id", ["token1", "token2"]));