From 1f8e18d97baa4721ca8d2a7990196525835b251f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 2 Jun 2008 15:43:33 -0400 Subject: [PATCH] add the hmac sha1 signature method to server darcs-hash:20080602194333-84dde-3ebcd6250184952779a6e6fd7c8561cc6a3733ac.gz --- lib/omb.php | 1 + 1 file changed, 1 insertion(+) 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; }