mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
Don't hardcode the secret key default comment
This commit is contained in:
parent
bd9ffc828e
commit
7df5e0469a
2 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue