diff options
author | Linus Nordberg <linus@nordu.net> | 2015-09-26 21:14:38 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2016-02-01 11:40:25 +0100 |
commit | 1aa959b65818ca98855d7af1ba610528cc82fc25 (patch) | |
tree | 272e31dcf9484c868e0eed086cab5f230829efe5 /src/v1.erl | |
parent | 3af793842f9feb2d8ae09075d596ac9e1c50bf99 (diff) |
Base64-decode submitted blobs and treat them as leaf certs.
Diffstat (limited to 'src/v1.erl')
-rw-r--r-- | src/v1.erl | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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. |