Renamed generate_encryption_keys binary to libexim-encrypt-dlfunc-genkeys.

This commit is contained in:
Heiko Reese
2021-09-06 02:07:33 +02:00
parent 71b3950c03
commit aaad6b0e4f
3 changed files with 3 additions and 3 deletions

View File

@ -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` * `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 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. overwrite the previous key pair file without confirmation! Make sure to store your production keys in a safe place.
```shell ```shell
$ ./generate_encryption_keys $ ./libexim-encrypt-dlfunc-genkeys
=== Creating cryptobox key pair === === Creating cryptobox key pair ===
Wrote »cryptobox_recipient_pk_exim.conf« Wrote »cryptobox_recipient_pk_exim.conf«
Wrote »cryptobox_recipient_pk.raw« Wrote »cryptobox_recipient_pk.raw«

View File

@ -1,6 +1,6 @@
configure_file(output: 'config.h', configuration: conf_data) 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 ], dependencies : [ sodium_deps ],
install: true) install: true)