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.
16 lines
332 B
16 lines
332 B
<?php
|
|
|
|
namespace HyperfTest\Cases;
|
|
|
|
use App\Service\v3\CcbPay;
|
|
use HyperfTest\HttpTestCase;
|
|
|
|
class CcbTest extends HttpTestCase
|
|
{
|
|
public function ccbRsaTest()
|
|
{
|
|
echo PHP_EOL, '111111111111111', PHP_EOL;
|
|
echo CcbPay::getInstance()->SHA256WithRSAEncrypt('123456');
|
|
echo PHP_EOL, '222222222222222', PHP_EOL;
|
|
}
|
|
}
|