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
:
ShaHmac1SignerTest.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\ShaHmac1Signer; class ShaHmac1SignerTest extends TestCase { public function setUp() { Config::load(); } public function testShaHmac1Signer() { $signer = new ShaHmac1Signer(); $this->assertEquals("33nmIV5/p6kG/64eLXNljJ5vw84=",$signer->signString("this is a ShaHmac1 test.", "accessSecret")); } }