summaryrefslogtreecommitdiff
path: root/src/erlang-oauth/oauth_plaintext.erl
diff options
context:
space:
mode:
authorAdam Kocoloski <adam@cloudant.com>2010-08-11 15:34:41 -0400
committerAdam Kocoloski <adam@cloudant.com>2010-08-11 17:39:37 -0400
commit8138d70bb8c1de954c46b417ccd22964b6432965 (patch)
treef833623bbf690a3d4d5799b6492e1ac729bfc152 /src/erlang-oauth/oauth_plaintext.erl
parent1c9d5c118ace092e228f60359e2863da1d3b1bc7 (diff)
move oauth to rebar layout
Diffstat (limited to 'src/erlang-oauth/oauth_plaintext.erl')
-rw-r--r--src/erlang-oauth/oauth_plaintext.erl10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/erlang-oauth/oauth_plaintext.erl b/src/erlang-oauth/oauth_plaintext.erl
deleted file mode 100644
index 41a1e9b2..00000000
--- a/src/erlang-oauth/oauth_plaintext.erl
+++ /dev/null
@@ -1,10 +0,0 @@
--module(oauth_plaintext).
-
--export([signature/2, verify/3]).
-
-
-signature(CS, TS) ->
- oauth_uri:calate("&", [CS, TS]).
-
-verify(Signature, CS, TS) ->
- couch_util:verify(signature(CS, TS), Signature).