mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Added bindings for Signable, SigningConfig, Signing * Fixed PHP5.6 argument vector madness * Added SigningConfigAWS implementation and lifetime tests * Updated .gitignore * Added impl for Signing::signRequestAws(), laid out sigv4 test
14 lines
399 B
PHP
14 lines
399 B
PHP
<?php
|
|
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
namespace AWS\CRT\Auth;
|
|
|
|
use AWS\CRT\NativeResource;
|
|
|
|
abstract class Signing extends NativeResource {
|
|
static function signRequestAws($signable, $signing_config, $on_complete) {
|
|
return self::$crt->sign_request_aws($signable, $signing_config, $on_complete);
|
|
}
|
|
} |