From ed80f5c1dbf98a594ff2a5a44fece8b1c9c453b6 Mon Sep 17 00:00:00 2001 From: Matt Drollette Date: Sun, 15 Oct 2017 13:01:42 -0500 Subject: [PATCH] add dep --- .gitignore | 1 + CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Gopkg.lock | 45 +++++++++++++++++++++++++++++++++++++++++++++ Gopkg.toml | 38 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 114 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 Gopkg.lock create mode 100644 Gopkg.toml diff --git a/.gitignore b/.gitignore index 4eb78a7..a5fd14c 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ reseed_private.pem /build /.build /release/i2p-tools +/vendor diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..78c4d9c --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +2016-12-21 + * deactivating previous random time delta, makes only sense when patching ri too + * app.Version = "0.1.6" + +2016-10-09 + * seed the math random generator with time.Now().UnixNano() + * added 6h+6h random time delta at su3-age to increase anonymity + * app.Version = "0.1.5" + + +2016-05-15 + * README.md updated + * allowed routerInfos age increased from 96 to 192 hours + * app.Version = "0.1.4" + +2016-03-05 + * app.Version = "0.1.3" + * CRL creation added + +2016-01-31 + * allowed TLS ciphers updated (hardened) + * TLS certificate generation: RSA 4096 --> ECDSAWithSHA512 384bit secp384r1 + * ECDHE handshake: only CurveP384 + CurveP521, default CurveP256 removed + * TLS certificate valid: 2y --> 5y + * throttled.PerDay(4) --> PerHour(4), to enable limited testing + * su3 RebuildInterval: 24h --> 90h, higher anonymity for the running i2p-router + * numRi per su3 file: 75 --> 77 + +2016-01 + * fork from https://github.com/MDrollette/i2p-tools \ No newline at end of file diff --git a/Gopkg.lock b/Gopkg.lock new file mode 100644 index 0000000..dcf2e54 --- /dev/null +++ b/Gopkg.lock @@ -0,0 +1,45 @@ +# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. + + +[[projects]] + name = "github.com/codegangsta/cli" + packages = ["."] + revision = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" + version = "v1.20.0" + +[[projects]] + name = "github.com/garyburd/redigo" + packages = ["internal","redis"] + revision = "433969511232c397de61b1442f9fd49ec06ae9ba" + version = "v1.1.0" + +[[projects]] + name = "github.com/gorilla/handlers" + packages = ["."] + revision = "a4043c62cc2329bacda331d33fc908ab11ef0ec3" + version = "v1.2.1" + +[[projects]] + branch = "master" + name = "github.com/hashicorp/golang-lru" + packages = [".","simplelru"] + revision = "0a025b7e63adc15a622f29b0b2c4c3848243bbf6" + +[[projects]] + branch = "master" + name = "github.com/justinas/alice" + packages = ["."] + revision = "1051eaf52fcafdd87ead59d28b065f1fcb8274ec" + +[[projects]] + name = "gopkg.in/throttled/throttled.v2" + packages = [".","store","store/memstore","store/redigostore"] + revision = "b5675e93f9d999b22f92d859a5bf2138d3641af4" + version = "v2.0.3" + +[solve-meta] + analyzer-name = "dep" + analyzer-version = 1 + inputs-digest = "577e9731d3208e9a20eb0d81685d237d74c5dd727f214dafdfb4fe50308cbf02" + solver-name = "gps-cdcl" + solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml new file mode 100644 index 0000000..16aea61 --- /dev/null +++ b/Gopkg.toml @@ -0,0 +1,38 @@ + +# Gopkg.toml example +# +# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md +# for detailed Gopkg.toml documentation. +# +# required = ["github.com/user/thing/cmd/thing"] +# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"] +# +# [[constraint]] +# name = "github.com/user/project" +# version = "1.0.0" +# +# [[constraint]] +# name = "github.com/user/project2" +# branch = "dev" +# source = "github.com/myfork/project2" +# +# [[override]] +# name = "github.com/x/y" +# version = "2.4.0" + + +[[constraint]] + name = "github.com/codegangsta/cli" + version = "1.20.0" + +[[constraint]] + name = "github.com/gorilla/handlers" + version = "1.2.1" + +[[constraint]] + branch = "master" + name = "github.com/justinas/alice" + +[[constraint]] + name = "gopkg.in/throttled/throttled.v2" + version = "2.0.3"