Don't hardcode the secret key default comment

This commit is contained in:
Frank Denis 2015-06-07 21:10:02 +02:00
parent bd9ffc828e
commit 7df5e0469a
2 changed files with 2 additions and 1 deletions

View file

@ -432,7 +432,7 @@ generate(const char *pk_file, const char *sk_file)
if ((fp = fopen_create_useronly(sk_file)) == NULL) {
exit_err(sk_file);
}
xfprintf(fp, "untrusted comment: minisign encrypted secret key\n");
xfprintf(fp, COMMENT_PREFIX SECRETKEY_DEFAULT_COMMENT "\n");
xfput_b64(fp, (unsigned char *) (void *) seckey_struct,
sizeof *seckey_struct);
xfclose(fp);

View file

@ -11,6 +11,7 @@
#define CHKALG "B2"
#define COMMENT_PREFIX "untrusted comment: "
#define DEFAULT_COMMENT "signature from minisign secret key"
#define SECRETKEY_DEFAULT_COMMENT "minisign encrypted secret key"
#define TRUSTED_COMMENT_PREFIX "trusted comment: "
#define SIG_DEFAULT_PKFILE "minisign.pub";
#define SIG_DEFAULT_SKFILE "minisign.key";