Bill Li
Bill Li
openssl version OpenSSL 1.0.2q 20 Nov 2018
Make sure you read **Issues Guideline** and answer these questions before submitting your issue. Thanks! (Any **non-English** issues will be closed immediately.) 1. Please provide your PHP and Swoole version....
php ```php class SignInMutation extends Mutation { use DispatchesJobs; protected $attributes = [ 'name' => 'SignIn Mutation' ]; public function type() { return ofcold('graphql')->type('IssueTokenType'); } public function args() { return...
PHP ```php class ProductsQuery extends Query { protected $attributes = [ 'name' => 'Products Query' ]; public function type() { return GraphQL::pagination( GraphQL::type('Product') ); } public function resolve($root, $args) {...
My config ``` "syntaxes": "php", // Syntax names which must process PHP formatter "php_path": "/usr/bin/php", // Path for PHP executable, e.g. "/usr/lib/php" or "C:/Program Files/PHP/php.exe". If empty, uses command "php"...
### CODE ```php use Rtgm\util\MyAsn1; use Rtgm\util\FormatSign; use Rtgm\sm\RtSm2 as CryptSM2; require __DIR__.'/vendor/autoload.php'; $privateKey = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; $publicKey = 'fc436395c7acae80aa3d760dd85375ad0b5b467c4897c7cef99d3f0c76b3f4e616c73df6df4dede213bf16f8047f83a78ebe668bc87c6e4b7c783b9fa5df6f52'; // $sign = 'a940d1ae40f5438c87cce9acf2da090cc23f6c4daa11ae77ef802d6d09dc9d39752d06cef0368e403bfc7f772a2420506c2018e1215a0dee10428b8b24427307'; $sign = '3b0a4dfac9fdc877cbe9e1f428791d7fc354812f16b4590523610bd3d1cb7b33bb6b8f1bc8cf709ac5096a005077412623c94a96aa4e5036645c7d606ff9969d'; $demoText = '123'; $format...