From aaad6b0e4fbde440acf51338cb8d710c944cd336 Mon Sep 17 00:00:00 2001 From: Heiko Reese Date: Mon, 6 Sep 2021 02:07:33 +0200 Subject: [PATCH] Renamed generate_encryption_keys binary to libexim-encrypt-dlfunc-genkeys. --- README.md | 4 ++-- ...ate_encryption_keys.c => libexim-encrypt-dlfunc-genkeys.c} | 0 src/meson.build | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/{generate_encryption_keys.c => libexim-encrypt-dlfunc-genkeys.c} (100%) diff --git a/README.md b/README.md index f18db1f..837c53b 100644 --- a/README.md +++ b/README.md @@ -74,11 +74,11 @@ Public key encryption that uses a key pair which needs to be created beforehand: * `sodium_crypto_box_seal_open(private key, public key, ciphertext) → cleartext` The second pair needs a proper key pair in the correct format. This is what the -`generate_encryption_keys` utility is for. Simply run it once to generate a pair. Be aware that every invocation will +`libexim-encrypt-dlfunc-genkeys` utility is for. Simply run it once to generate a pair. Be aware that every invocation will overwrite the previous key pair file without confirmation! Make sure to store your production keys in a safe place. ```shell -$ ./generate_encryption_keys +$ ./libexim-encrypt-dlfunc-genkeys === Creating cryptobox key pair === Wrote »cryptobox_recipient_pk_exim.conf« Wrote »cryptobox_recipient_pk.raw« diff --git a/src/generate_encryption_keys.c b/src/libexim-encrypt-dlfunc-genkeys.c similarity index 100% rename from src/generate_encryption_keys.c rename to src/libexim-encrypt-dlfunc-genkeys.c diff --git a/src/meson.build b/src/meson.build index 81ccf72..8da17bf 100644 --- a/src/meson.build +++ b/src/meson.build @@ -1,6 +1,6 @@ configure_file(output: 'config.h', configuration: conf_data) -executable('generate_encryption_keys', 'generate_encryption_keys.c', +executable('libexim-encrypt-dlfunc-genkeys', 'libexim-encrypt-dlfunc-genkeys.c', dependencies : [ sodium_deps ], install: true)