Vendor's structure created
This commit is contained in:
parent
b3978c6f9d
commit
ebb686a715
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace OAuth;
|
namespace Eher\OAuth;
|
||||||
|
|
||||||
class OAuthConsumer {
|
class OAuthConsumer {
|
||||||
public $key;
|
public $key;
|
@ -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) {
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace OAuth;
|
namespace Eher\OAuth;
|
||||||
|
|
||||||
/* Generic exception class
|
/* Generic exception class
|
||||||
*/
|
*/
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace OAuth;
|
namespace Eher\OAuth;
|
||||||
|
|
||||||
class OAuthRequest {
|
class OAuthRequest {
|
||||||
protected $parameters;
|
protected $parameters;
|
@ -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
|
@ -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
|
@ -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]
|
@ -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
|
@ -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
|
Loading…
Reference in New Issue
Block a user