From b756d6af862e97c1279d6006ed7684e28564aa97 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Mon, 9 Jun 2014 10:33:00 +0200 Subject: Add licensing information. --- src/db.erl | 3 +++ src/db.hrl | 3 +++ src/hex.erl | 3 +++ src/ht.erl | 2 ++ src/plop.erl | 3 +++ src/plop_app.erl | 3 +++ src/plop_sup.erl | 3 +++ 7 files changed, 20 insertions(+) (limited to 'src') diff --git a/src/db.erl b/src/db.erl index f0819cf..f683d48 100644 --- a/src/db.erl +++ b/src/db.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + -module(db). -behaviour(gen_server). diff --git a/src/db.hrl b/src/db.hrl index 0a6583c..3914a8c 100644 --- a/src/db.hrl +++ b/src/db.hrl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + %% @doc What's stored in the database. %% 'index' is the primary key, 'hash' is also indexed. -record(plop, { diff --git a/src/hex.erl b/src/hex.erl index dcb9349..e3c8441 100644 --- a/src/hex.erl +++ b/src/hex.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + -module(hex). -export([bin_to_hexstr/1,hexstr_to_bin/1]). diff --git a/src/ht.erl b/src/ht.erl index 0ef95fe..b24d04d 100644 --- a/src/ht.erl +++ b/src/ht.erl @@ -1,3 +1,5 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. %%% %%% Implementation of a history tree similar to what is described in %%% Efficient Data Structures for Tamper-Evident Logging [0]. This diff --git a/src/plop.erl b/src/plop.erl index 5d29c24..f681898 100644 --- a/src/plop.erl +++ b/src/plop.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. +%%% %%% @doc Server holding log entries in a database and hashes in a %%% Merkle tree. A backend for things like Certificate Transparency %%% (RFC 6962). diff --git a/src/plop_app.erl b/src/plop_app.erl index 0a972cc..f90792d 100644 --- a/src/plop_app.erl +++ b/src/plop_app.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + -module(plop_app). -behaviour(application). -export([start/2, stop/1]). diff --git a/src/plop_sup.erl b/src/plop_sup.erl index 1c6602c..089a812 100644 --- a/src/plop_sup.erl +++ b/src/plop_sup.erl @@ -1,3 +1,6 @@ +%%% Copyright (c) 2014, NORDUnet A/S. +%%% See LICENSE for licensing information. + -module(plop_sup). -behaviour(supervisor). -- cgit v1.1