Class yii\authclient\signature\RsaSha1
| Inheritance | yii\authclient\signature\RsaSha1 » yii\authclient\signature\BaseMethod » yii\base\Object | 
|---|---|
| Available since version | 2.0 | 
RsaSha1 represents 'RSA-SHA1' signature method.
Note: This class requires PHP "OpenSSL" extension(http://php.net/manual/en/book.openssl.php).
Public Properties
| Property | Type | Description | Defined By | 
|---|---|---|---|
| $privateCertificateFile | string | Path to the file, which holds private key certificate. | yii\authclient\signature\RsaSha1 | 
| $publicCertificateFile | string | Path to the file, which holds public key certificate. | yii\authclient\signature\RsaSha1 | 
Protected Properties
| Property | Type | Description | Defined By | 
|---|---|---|---|
| $_privateCertificate | string | OpenSSL private key certificate content. | yii\authclient\signature\RsaSha1 | 
| $_publicCertificate | string | OpenSSL public key certificate content. | yii\authclient\signature\RsaSha1 | 
Public Methods
| Method | Description | Defined By | 
|---|---|---|
| generateSignature() | Generates OAuth request signature. | yii\authclient\signature\RsaSha1 | 
| getName() | Return the canonical name of the Signature Method. | yii\authclient\signature\RsaSha1 | 
| getPrivateCertificate() | yii\authclient\signature\RsaSha1 | |
| getPublicCertificate() | yii\authclient\signature\RsaSha1 | |
| init() | yii\authclient\signature\RsaSha1 | |
| setPrivateCertificate() | yii\authclient\signature\RsaSha1 | |
| setPublicCertificate() | yii\authclient\signature\RsaSha1 | |
| verify() | Verifies given OAuth request. | yii\authclient\signature\RsaSha1 | 
Protected Methods
| Method | Description | Defined By | 
|---|---|---|
| initPrivateCertificate() | Creates initial value for \yii\authclient\signature\privateCertificate. | yii\authclient\signature\RsaSha1 | 
| initPublicCertificate() | Creates initial value for \yii\authclient\signature\publicCertificate. | yii\authclient\signature\RsaSha1 | 
Property Details
OpenSSL private key certificate content. This value can be fetched from file specified by $privateCertificateFile.
OpenSSL public key certificate content. This value can be fetched from file specified by $publicCertificateFile.
Path to the file, which holds private key certificate.
Path to the file, which holds public key certificate.
Method Details
Generates OAuth request signature.
| public string generateSignature ( $baseString, $key ) | ||
| $baseString | string | Signature base string. | 
| $key | string | Signature key. | 
| return | string | Signature string. | 
|---|---|---|
Return the canonical name of the Signature Method.
| public string getName ( ) | ||
| return | string | Method name. | 
|---|---|---|
| public string getPrivateCertificate ( ) | ||
| return | string | Private key certificate content. | 
|---|---|---|
| public string getPublicCertificate ( ) | ||
| return | string | Public key certificate content. | 
|---|---|---|
| public void init ( ) | 
Creates initial value for \yii\authclient\signature\privateCertificate.
This method will attempt to fetch the certificate value from $privateCertificateFile file.
| protected string initPrivateCertificate ( ) | ||
| return | string | Private certificate content. | 
|---|---|---|
| throws | \yii\base\InvalidConfigException | on failure. | 
Creates initial value for \yii\authclient\signature\publicCertificate.
This method will attempt to fetch the certificate value from $publicCertificateFile file.
| protected string initPublicCertificate ( ) | ||
| return | string | Public certificate content. | 
|---|---|---|
| throws | \yii\base\InvalidConfigException | on failure. | 
| public void setPrivateCertificate ( $privateCertificate ) | ||
| $privateCertificate | string | Private key certificate content. | 
| public void setPublicCertificate ( $publicCertificate ) | ||
| $publicCertificate | string | Public key certificate content. | 
Verifies given OAuth request.
| public boolean verify ( $signature, $baseString, $key ) | ||
| $signature | string | Signature to be verified. | 
| $baseString | string | Signature base string. | 
| $key | string | Signature key. | 
| return | boolean | Success. | 
|---|---|---|