Vendor's structure created

This commit is contained in:
Eher 2012-02-08 17:34:48 -02:00
parent b3978c6f9d
commit ebb686a715
11 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
class OAuthConsumer { class OAuthConsumer {
public $key; public $key;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
class OAuthDataStore { class OAuthDataStore {
function lookup_consumer($consumer_key) { function lookup_consumer($consumer_key) {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
/* Generic exception class /* Generic exception class
*/ */

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
class OAuthRequest { class OAuthRequest {
protected $parameters; protected $parameters;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
class OAuthServer { class OAuthServer {
protected $timestamp_threshold = 300; // in seconds, five minutes protected $timestamp_threshold = 300; // in seconds, five minutes

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
/** /**
* A class for implementing a Signature Method * A class for implementing a Signature Method

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
/** /**
* The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104] * The HMAC-SHA1 signature method uses the HMAC-SHA1 signature algorithm as defined in [RFC2104]

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
/** /**
* The PLAINTEXT method does not provide any security protection and SHOULD only be used * The PLAINTEXT method does not provide any security protection and SHOULD only be used

View File

@ -1,6 +1,6 @@
<?php <?php
namespace OAuth; namespace Eher\OAuth;
/** /**
* The RSA-SHA1 signature method uses the RSASSA-PKCS1-v1_5 signature algorithm as defined in * The RSA-SHA1 signature method uses the RSASSA-PKCS1-v1_5 signature algorithm as defined in