From: Evan Prodromou Date: Mon, 2 Jun 2008 19:43:33 +0000 (-0400) Subject: add the hmac sha1 signature method to server X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1f8e18d97baa4721ca8d2a7990196525835b251f;p=quix0rs-gnu-social.git add the hmac sha1 signature method to server darcs-hash:20080602194333-84dde-3ebcd6250184952779a6e6fd7c8561cc6a3733ac.gz --- diff --git a/lib/omb.php b/lib/omb.php index e9108e3e75..481aa6c024 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -53,6 +53,7 @@ function omb_oauth_server() { static $server = null; if (!$server) { $server = new OAuthServer(new LaconicaOAuthDataStore()); + $server->add_signature_method(omb_hmac_sha1()); } return $server; }