mirror of
https://gitlab.kit.edu/kit/scc/sys/mail/exim-encrypt-dlfunc.git
synced 2025-12-06 07:53:56 +01:00
Renamed generate_encryption_keys binary to libexim-encrypt-dlfunc-genkeys.
This commit is contained in:
@ -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«
|
||||||
|
|||||||
@ -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)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user