Skip to content

Commit

Permalink
Add HMAC-SHA256 signature documentation
Browse files Browse the repository at this point in the history
Co-Authored-By: Valentin Sauer <[email protected]>
  • Loading branch information
GrahamCampbell and ValeSauer committed Jan 6, 2025
1 parent 06911a2 commit e72f61f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/Oauth1.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,17 @@ class Oauth1
* - callback: OAuth callback
* - consumer_key: Consumer key string. Defaults to "anonymous".
* - consumer_secret: Consumer secret. Defaults to "anonymous".
* - private_key_file: The location of your private key file (RSA-SHA1 signature method only)
* - private_key_passphrase: The passphrase for your private key file (RSA-SHA1 signature method only)
* - private_key_file: The location of your private key file (RSA-SHA1
* signature method only)
* - private_key_passphrase: The passphrase for your private key file
* (RSA-SHA1 signature method only)
* - token: Client token
* - token_secret: Client secret token
* - verifier: OAuth verifier.
* - version: OAuth version. Defaults to '1.0'.
* - realm: OAuth realm.
* - signature_method: Signature method. One of 'HMAC-SHA1', 'RSA-SHA1', or
* 'PLAINTEXT'. Defaults to 'HMAC-SHA1'.
* - signature_method: Signature method. One of 'HMAC-SHA1', 'RSA-SHA1',
* 'HMAC-SHA256', or 'PLAINTEXT'. Defaults to 'HMAC-SHA1'.
*
* @param array $config Configuration array.
*/
Expand Down

0 comments on commit e72f61f

Please sign in to comment.