From fc5587c470b93a53dd8bbbbd1ff71ca4c0170904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Wed, 29 Apr 2020 12:04:35 +0000 Subject: [PATCH] Bump to 0.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- README.md | 2 +- secret.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a8a9ee..0f5f232 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Keep your little secrets, publicly. - No configuration. Get back your file and you're done. - Secret's name (hostname, mail, login, etc.) are also encrypted. - Secret agent only trusts subprocesses. Not all user processes! How nice is that? - - Unstored secrets! Derived from a simple key and a passphrase. + - Supports unstored secrets. Derived from a simple key and a passphrase. - Supports multiple passphrases. Not super user-friendly but nice to have. - Depends only on the [libhydrogen](https://libhydrogen.org/) library. - Small, simple and non obfuscated C code. Well, I hope so :) diff --git a/secret.c b/secret.c index 2984177..be9535a 100644 --- a/secret.c +++ b/secret.c @@ -20,7 +20,7 @@ #define S_COUNT(x) (sizeof(x) / sizeof((x)[0])) #define S_VER_MAJOR 0U -#define S_VER_MINOR 1U +#define S_VER_MINOR 2U #define S_ENTRYSIZE 512U #define S_PWDGENLEN 25U #define S_ENV_AGENT "SECRET_AGENT"