From 3979494d402ed1a151985b1d11504e15d2cf2e4e Mon Sep 17 00:00:00 2001 From: sobolevn Date: Fri, 3 Jun 2016 23:53:49 +0300 Subject: [PATCH] Refactored how does `Tools` section look like. Added new section `plugins`, moved `standalone` section inside. --- README.md | 24 ++++++++++++++++++++---- package.json | 5 +++-- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3fb0ace..454c632 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A curated list of cryptography resources and links. - + - [Theory](#theory) @@ -20,7 +20,13 @@ A curated list of cryptography resources and links. - [Courses](#courses) -- [Standalone tools](#standalone-tools) +- [Tools](#tools) + + - [Standalone](#standalone) + + - [Plugins](#plugins) + + - [Git](#git) - [Frameworks and Libs](#frameworks-and-libs) @@ -57,7 +63,7 @@ A curated list of cryptography resources and links. - [License](#license) - + - - - @@ -102,10 +108,20 @@ A curated list of cryptography resources and links. - [Practical Aspects of Modern Cryptography](http://courses.cs.washington.edu/courses/csep590/06wi/) - Practical Aspects of Modern Cryptography, Winter 2006 University of Washington CSE. - [Theory and Practice of Cryptography](https://www.youtube.com/watch?v=ZDnShu5V99s) - Introduction to Modern Cryptography, Using Cryptography in Practice and at Google, Proofs of Security and Security Definitions and A Special Topic in Cryptography. -## Standalone tools +## Tools + +### Standalone +- [blackbox](https://github.com/StackExchange/blackbox) - safely store secrets in Git/Mercurial/Subversion. +- [certbot](https://github.com/certbot/certbot) - previously the Let's Encrypt Client, is EFF's tool to obtain certs from Let's Encrypt, and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol. - [gpg](https://www.gnupg.org/) - is a complete and free implementation of the OpenPGP standard. It allows to encrypt and sign your data and communication, features a versatile key management system. GnuPG is a command line tool with features for easy integration with other applications. +### Plugins + +#### Git + +- [git-secret](https://sobolevn.github.io/git-secret/) - A bash-tool to store your private data inside a git repository. + ## Frameworks and Libs ### C diff --git a/package.json b/package.json index 16788e3..438c34e 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "remark": "^4.2.2", "remark-lint": "^3.2.1", "remark-lint-alphabetize-lists": "^1.0.4", - "remark-lint-no-url-trailing-slash": "^1.0.0" + "remark-lint-ending-period": "^1.0.1" }, "remarkConfig": { "plugins": { @@ -34,7 +34,8 @@ "list-item-indent": "space", "no-tabs": null, "external": [ - "remark-lint-alphabetize-lists" + "remark-lint-alphabetize-lists", + "remark-lint-ending-period" ] } },