This wiki is no longer active and is left here for historical purposes. Please visit oauth.net for up-to-date information.
View
 

AccessorSecret

This version was saved 10 years, 3 months ago View current version     Page history
Saved by PBworks
on October 26, 2007 at 2:40:32 pm
 

Here are some related extensions to OAuth. To discuss them, please use the Accessor Secret thread in the Google Group OAuth Extensions.

 

Extension: Accessor Secret

 

The Service Provider MUST enable Consumer Developers to establish an Accessor Secret, in addition to the Consumer Key and Consumer Secret. The procedure for establishing the Accessor Secret is entirely up to the Service Provider. The Accessor Secret MAY be empty, or MAY be the same as the Consumer Secret.

 

If either participant doesn't support this extension, the Accessor Secret MUST be the same as the Consumer Secret.

 

Extension: Variable Accessor Secret

 

The Consumer MAY choose a separate Accessor Secret for each Access Token. If it's different from the established Accessor Secret, the Consumer MUST send the chosen secret as a parameter named oauth_accessor_secret, in the request to obtain a Request Token (OAuth section 6.1.1).

 

This parameter MAY be absent, in which case the established Accessor Secret MUST be used. (That's the Consumer Secret, if either participant doesn't support the Accessor Secret extension.)

 

A Service Provider SHOULD reject a request with an oauth_accessor_secret parameter, if it doesn't support this extension.

 

Extension: HMAC-SHA1-Accessor signature method

 

This signature method is just like the HMAC-SHA1 signature method (OAuth section 9.2), except that the Accessor Secret is used instead of the Consumer Secret. That is, the key is the concatenated values of the Accessor Secret (not the Consumer Secret) and the Token Secret, separated by a '&' character.

 

This signature method MUST NOT be used when the Accessor Secret and Consumer Secret are the same. (The HMAC-SHA1 method may be used in this case.)

 

A Service Provider MUST reject a request with this signature method, if it doesn't support this signature method and the Accessor Secret extension.

 

This signature method SHOULD NOT be used to sign a request for a token. (The Consumer Secret should used for this purpose, as specified in OAuth section 9.)

 

Extension: PLAINTEXT-Accessor signature method

 

This signature method is just like the PLAINTEXT signature method (OAuth section 9.4), except that the Accessor Secret is used instead of the Consumer Secret. That is, the signature is the concatenated values of the Accessor Secret (not the Consumer Secret) and the Token Secret,

 

This signature method MUST NOT be used when the Accessor Secret and Consumer Secret are the same. (The PLAINTEXT method may be used in this case.)

 

A Service Provider MUST reject a request with this signature method, if it doesn't support this signature method and the Accessor Secret extension.

 

This signature method SHOULD NOT be used to sign a request for a token. (The Consumer Secret should used for this purpose, as specified in OAuth section 9.)

 

Security Considerations

 

An Accessor Secret enables an attacker to abuse a legitimate access token. So a variable Accessor Secret SHOULD be kept private, and SHOULD be transmitted only via secure channels. SSL or TLS is RECOMMENDED for this purpose. But an Accessor Secret that's empty or widely distributed usually can't be kept secret, so there's little reason to protect it.

 

These extensions can improve security when a Consumer has a trusted part that's shared by all Users, and a less trusted part for each User, and the less trusted part sends requests directly to the Service Provider for access to Protected Resources. The Consumer Secret SHOULD NOT be revealed to a less trusted part. This prevents an attacker from obtaining access tokens by getting the Consumer Secret from the less trusted part.

 

Similar Systems

 

Facebook authentication supports a similar pattern. A 'Desktop Application' doesn't use its application secret to sign access requests. Instead, it uses a secret chosen by Facebook and returned from facebook.auth.getSession. The nearest analog in OAuth would be an empty Accessor Secret; that is, the Access Token Secret alone is used to sign access requests.

Comments (0)

You don't have permission to comment on this page.