summaryrefslogtreecommitdiff
path: root/README
blob: b7fcae4e468e03d4d7e298a27259e265c3c8d128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
plop is a public log based on a Merkle tree. It can be used for
implementing Certificate Transparency (RFC 6962).

The first implementation is in Erlang. The only interface supported
initially is Erlang messages.

Requires Erlang/OTP 17 [erts-6.0] or later.

Compile the application

  $ erl -make

Start the application locally

  $ erl -boot start_sasl -pa ebin -eval "application:start(plop)." -plop Keyfile "src/test/rsakey.pem" -plop Passphrase "sikrit"

Test the application

  [FIXME]