diff options
author | Magnus Ahltorp <map@kth.se> | 2014-10-21 17:16:50 +0200 |
---|---|---|
committer | Magnus Ahltorp <map@kth.se> | 2014-10-21 17:16:50 +0200 |
commit | 838828891320fd5b6c97df74327c6163521517cc (patch) | |
tree | d52115e63e43d4dd17dfd3392c4e58a9db6be89f /src | |
parent | 049c5b4429558292b4c4736c229b8c0de12a9a72 (diff) |
Break include dependency on plop.hrl
Diffstat (limited to 'src')
-rw-r--r-- | src/catlfish.erl | 1 | ||||
-rw-r--r-- | src/v1.erl | 11 |
2 files changed, 4 insertions, 8 deletions
diff --git a/src/catlfish.erl b/src/catlfish.erl index e261824..ae4da9d 100644 --- a/src/catlfish.erl +++ b/src/catlfish.erl @@ -3,7 +3,6 @@ -module(catlfish). -export([add_chain/2, entries/2, entry_and_proof/2]). --include("$CTROOT/plop/include/plop.hrl"). -define(PROTOCOL_VERSION, 0). @@ -9,8 +9,6 @@ 'get-sth-consistency'/3, 'get-proof-by-hash'/3, 'get-entries'/3, 'get-roots'/3, 'get-entry-and-proof'/3]). --include("$CTROOT/plop/include/plop.hrl"). - %% Public functions, i.e. part of URL. 'add-chain'(SessionID, _Env, Input) -> R = case (catch jiffy:decode(Input)) of @@ -34,11 +32,10 @@ niy(SessionID). 'get-sth'(SessionID, _Env, _Input) -> - #sth{ - treesize = Treesize, - timestamp = Timestamp, - roothash = Roothash, - signature = Signature} = plop:sth(), + { Treesize, + Timestamp, + Roothash, + Signature} = plop:sth(), R = [{tree_size, Treesize}, {timestamp, Timestamp}, {sha256_root_hash, base64:encode(Roothash)}, |