Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
smsapi
/
api_sdk
/
tests
/
Core
/
Auth
:
ShaHmac256SignerTest.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Aliyun\Test\Core\Auth; use PHPUnit\Framework\TestCase; use Aliyun\Core\Config; use Aliyun\Core\Auth\ShaHmac256Signer; class ShaHmac256SignerTest extends TestCase { public function setUp() { Config::load(); } public function testShaHmac256Signer() { $signer = new ShaHmac256Signer(); $this->assertEquals("TpF1lE/avV9EHGWGg9Vo/QTd2bLRwFCk9jjo56uRbCo=", $signer->signString("this is a ShaHmac256 test.", "accessSecret")); } }