You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
332 B

  1. <?php
  2. namespace HyperfTest\Cases;
  3. use App\Service\v3\CcbPay;
  4. use HyperfTest\HttpTestCase;
  5. class CcbTest extends HttpTestCase
  6. {
  7. public function ccbRsaTest()
  8. {
  9. echo PHP_EOL, '111111111111111', PHP_EOL;
  10. echo CcbPay::getInstance()->SHA256WithRSAEncrypt('123456');
  11. echo PHP_EOL, '222222222222222', PHP_EOL;
  12. }
  13. }