/**
  * Fetch the private CERT key for the signature
  * 
  * @param OAuthRequest request
  * @return string private key
  */
 protected function fetch_private_cert($request)
 {
     // not implemented yet, ideas are:
     // (1) do a lookup in a table of trusted certs keyed off of consumer
     //
     // either way should return a string representation of the certificate
     throw OAuthException("OAuthSignatureMethod_RSA_SHA1::fetch_private_cert not implemented");
 }
Example #2
0
 /**
  * Fetch the public CERT key for the signature
  * 
  * @param OAuthRequest request
  * @return string public key
  */
 protected function fetch_public_cert(&$request)
 {
     throw OAuthException("OAuthSignatureMethod_RSA_SHA1::fetch_public_cert not implemented");
 }