summaryrefslogtreecommitdiff
path: root/vendor/eher/oauth/src/Eher/OAuth/PlainText.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/eher/oauth/src/Eher/OAuth/PlainText.php')
-rw-r--r--vendor/eher/oauth/src/Eher/OAuth/PlainText.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/vendor/eher/oauth/src/Eher/OAuth/PlainText.php b/vendor/eher/oauth/src/Eher/OAuth/PlainText.php
deleted file mode 100644
index 895aeed..0000000
--- a/vendor/eher/oauth/src/Eher/OAuth/PlainText.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Eher\OAuth;
-
-/**
- * The PLAINTEXT method does not provide any security protection and SHOULD only be used
- * over a secure channel such as HTTPS. It does not use the Signature Base String.
- * - Chapter 9.4 ("PLAINTEXT")
- */
-class PlainText extends SignatureMethod {
- public function get_name() {
- return "PLAINTEXT";
- }
-
- /**
- * oauth_signature is set to the concatenated encoded values of the Consumer Secret and
- * Token Secret, separated by a '&' character (ASCII code 38), even if either secret is
- * empty. The result MUST be encoded again.
- * - Chapter 9.4.1 ("Generating Signatures")
- *
- * Please note that the second encoding MUST NOT happen in the SignatureMethod, as
- * Request handles this!
- */
- public function build_signature($request, $consumer, $token) {
- $key_parts = array(
- $consumer->secret,
- ($token) ? $token->secret : ""
- );
-
- $key_parts = Util::urlencode_rfc3986($key_parts);
- $key = implode('&', $key_parts);
- $request->base_string = $key;
-
- return $key;
- }
-}