Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php')
-rw-r--r--aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php b/aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php
new file mode 100644
index 00000000..d979db98
--- /dev/null
+++ b/aws/aws-crt-php/src/AWS/CRT/Auth/Signing.php
@@ -0,0 +1,22 @@
+<?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->native, $signing_config->native,
+ function($result, $error_code) use ($on_complete) {
+ $signing_result = SigningResult::fromNative($result);
+ $on_complete($signing_result, $error_code);
+ }, null);
+ }
+
+ static function testVerifySigV4ASigning($signable, $signing_config, $expected_canonical_request, $signature, $ecc_key_pub_x, $ecc_key_pub_y) {
+ return self::$crt->test_verify_sigv4a_signing($signable, $signing_config, $expected_canonical_request, $signature, $ecc_key_pub_x, $ecc_key_pub_y);
+ }
+}