PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
league
/
oauth1-client
/
src
/
Signature
<?php namespace League\OAuth1\Client\Signature; class PlainTextSignature extends Signature implements SignatureInterface { /** * @inheritDoc */ public function method() { return 'PLAINTEXT'; } /** * @inheritDoc */ public function sign($uri, array $parameters = [], $method = 'POST') { return $this->key(); } }
[+]
..
[-] SignatureInterface.php
[edit]
[-] EncodesUrl.php
[edit]
[-] HmacSha1Signature.php
[edit]
[-] PlainTextSignature.php
[edit]
[-] Signature.php
[edit]
[-] RsaSha1Signature.php
[edit]