Home | History | Annotate | Download | only in signature

Lines Matching defs:oauth

17 package net.oauth.signature;
28 import net.oauth.OAuth;
29 import net.oauth.OAuthAccessor;
30 import net.oauth.OAuthConsumer;
31 import net.oauth.OAuthException;
32 import net.oauth.OAuthMessage;
33 import net.oauth.OAuthProblemException;
40 * A pair of algorithms for computing and verifying an OAuth digital signature.
52 message.addParameter(new OAuth.Parameter("oauth_signature",
95 // described in http://oauth.pbwiki.com/AccessorSecret
150 parameters.addAll(OAuth.decodeForm(message.URL.substring(q + 1)));
154 return OAuth.percentEncode(message.method.toUpperCase()) + '&'
155 + OAuth.percentEncode(normalizeUrl(url)) + '&'
156 + OAuth.percentEncode(normalizeParameters(parameters));
193 return OAuth.formEncode(getParameters(p));
208 message.requireParameters(OAuth.OAUTH_SIGNATURE_METHOD);
228 String acceptable = OAuth.percentEncode(NAME_TO_CLASS.keySet());
266 this.key = OAuth.percentEncode(n) + ' ' + OAuth.percentEncode(v);