mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-06 04:17:41 +03:00
Add support for passing the key password non-interactively
This commit is contained in:
parent
45478e1dd6
commit
11d62f2dbe
1 changed files with 17 additions and 4 deletions
|
@ -7,6 +7,7 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
#if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(__HAIKU__)
|
||||||
|
@ -109,10 +110,22 @@ get_password(char *pwd, size_t max_len, const char *prompt)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
char* env_var_pwd = getenv("MINISIGN_PASSWORD");
|
||||||
|
if (env_var_pwd != NULL) {
|
||||||
|
size_t env_var_pwd_len = strlen(env_var_pwd);
|
||||||
|
if (env_var_pwd_len >= max_len) {
|
||||||
|
fprintf(stderr, "MINISIGN_PASSWORD environment variable value\
|
||||||
|
exceeds maximum allowed length\n");
|
||||||
|
return -1;
|
||||||
|
} else {
|
||||||
|
strcpy(pwd, env_var_pwd);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
disable_echo();
|
disable_echo();
|
||||||
ret = get_line(pwd, max_len, prompt);
|
ret = get_line(pwd, max_len, prompt);
|
||||||
enable_echo();
|
enable_echo();
|
||||||
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue