aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS18
-rw-r--r--LICENSE26
-rw-r--r--README.md4
-rw-r--r--go.mod3
-rw-r--r--main.go7
5 files changed, 58 insertions, 0 deletions
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000..e15246d
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,18 @@
+Authors of silent-ct
+
+The copyright on silent-ct is held by the respective authors. Unless
+file-specific copyright headers say otherwise, silent-ct is permissively
+licensed according to the BSD 2-Clause License. See the LICENSE file.
+
+This file contains only a summary. For fine-grained information on who authored
+a particular file or feature, please refer to the version control history at:
+
+ FIXME: add URL of the authorative source repo
+
+File-specific copyright headers should be used when necessary to document the
+origin of a file's contents, e.g., for code copied from other sources or which
+is governed by different license requirements than listed in the LICENSE file.
+
+Authors, in chronological order of initial contribution:
+
+ Rasmus Dahlberg
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..65193a9
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,26 @@
+BSD 2-Clause License
+
+Copyright (c) 2023, silent-ct authors
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5a27a78
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+# silent-ct
+
+`silent-ct` is an implementation of a silent Certificate Transparency (CT)
+monitor. You will not be notified unless certificate mis-issuance is suspected.
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..da7e70a
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module rgdd.se/silent-ct
+
+go 1.21.3
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..4ffa7f3
--- /dev/null
+++ b/main.go
@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+ fmt.Println("TODO: silent-ct")
+}