summaryrefslogtreecommitdiff
path: root/src/v1.erl
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2015-09-26 21:14:38 +0200
committerLinus Nordberg <linus@nordu.net>2015-11-20 10:14:15 +0100
commitb87783cc3dc39d5b2aa1c170cf5afaefc289c85a (patch)
tree8644211f6497c84393380781244315c9819602ce /src/v1.erl
parentab44afd1d7b24f0016d4323203c9451cf7e7c702 (diff)
Base64-decode submitted blobs and treat them as leaf certs.
Diffstat (limited to 'src/v1.erl')
-rw-r--r--src/v1.erl10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/v1.erl b/src/v1.erl
index eb35ee7..40e93f2 100644
--- a/src/v1.erl
+++ b/src/v1.erl
@@ -153,6 +153,12 @@ add_blob(Input) ->
{error, E} ->
err400("add-blob: bad input:", E);
{struct, [{<<"blob">>, Blob}]} ->
- success(catlfish:add_chain(Blob, normal));
- _ -> err400("add-blob: missing input: blob", Input)
+ case (catch base64:decode(Blob)) of
+ {'EXIT', _} ->
+ err400("add-blob: invalid base64-encoded blob", Blob);
+ DecodedBlob ->
+ success(catlfish:add_chain(DecodedBlob, [], normal))
+ end;
+ _ ->
+ err400("add-blob: missing input: blob", Input)
end.