#include "showpass.h"
#include "yankpass.h"
#include "listpass.h"
+/* #include "chkpass.h" */
#include "addpass.h"
#include "delpass.h"
#include "genpass.h"
printf("%s -s <パスワード名> :パスワードを表示\n", sofname);
printf("%s -y <パスワード名> :パスワードを表示せずクリップボードにコピーする\n", sofname);
printf("%s -l :パスワード一覧を表示\n", sofname);
+ printf("%s -c :複数サイトで同じパスワードを利用かどうかの確認\n", sofname);
printf("%s -a <パスワード名> :パスワードを追加\n", sofname);
printf("%s -d <パスワード名> :パスワードを削除\n", sofname);
printf("%s -e <パスワード名> :パスワードを変更\n", sofname);
printf("%s -s <Password name> : Show password\n", sofname);
printf("%s -y <Password name> : Copy password to clipboard without show\n", sofname);
printf("%s -l : Show me list of password\n", sofname);
+ printf("%s -c : Check if you use the same password on multiple website\n", sofname);
printf("%s -a <Password name> : Add password\n", sofname);
printf("%s -d <Password name> : Delete password\n", sofname);
printf("%s -e <Password name> : Edit password\n", sofname);
}
if (argc == 3 && strcmp(argv[1], "-i") == 0) initpass(argv[2]);
- else if (argc == 3 && strcmp(argv[1], "-s") == 0) showpass(argv[2]);
+ else if (argc == 3 && strcmp(argv[1], "-s") == 0) printf("%s", showpass(argv[2]));
else if (argc == 3 && strcmp(argv[1], "-y") == 0) yankpass(argv[2]);
else if (argc == 2 && strcmp(argv[1], "-l") == 0) {
char basePath[512];
listpass(basePath, 0);
}
+ /* else if (argc == 3 && strcmp(argv[1], "-c") == 0) chkpass(); */
else if (argc == 3 && strcmp(argv[1], "-a") == 0) addpass(argv[2]);
else if (argc == 3 && strcmp(argv[1], "-d") == 0) delpass(argv[2], 0);
else if (argc == 3 && strcmp(argv[1], "-e") == 0) {
gpgme_release(ctx);
}
-void showpass(char* file) {
+const char* showpass(char* file) {
char *lang = getenv("SP_LANG");
gpgme_ctx_t ctx;
if (err) {
if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to generating GPGME: %s\n", gpgme_strerror(err));
else fprintf(stderr, "GPGMEを創作に失敗:%s\n", gpgme_strerror(err));
- return;
+ return NULL;
}
// OpenPGPプロトコールを設定
if (homedir == NULL) {
if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting home directory");
else perror("ホームディレクトリを受取に失敗");
- return;
+ return NULL;
}
char* basedir = "/.local/share/sp/";
if (gpgpath == NULL) {
if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memeory");
else perror("メモリを割当に失敗");
- return;
+ return NULL;
}
snprintf(gpgpath, alllen, "%s%s%s%s", homedir, basedir, file, ext);
fprintf(stderr, "失敗したパス: %s\n", gpgpath);
}
free(gpgpath);
- return;
+ return NULL;
}
// ファイルからinデータオブジェクトを創作
if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to generating the GPGME data object");
else perror("GPGMEデータオブジェクトを創作に失敗");
clean_up(ctx, in, out, gpgfile, gpgpath);
- return;
+ return NULL;
}
// outデータオブジェクトを創作
if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to generating the GPGME data object");
else perror("GPGMEデータオブジェクトを創作に失敗");
clean_up(ctx, in, out, gpgfile, gpgpath);
- return;
+ return NULL;
}
// データオブジェクトを創作
// 掃除
clean_up(ctx, in, out, gpgfile, gpgpath);
- return;
+ return NULL;
}
// 復号化したパスワードを表示する
gpgme_data_seek(out, 0, SEEK_SET);
char buffer[512];
+ char* res = malloc(512 * sizeof(char));
+ if (res == NULL) {
+ if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+ else perror("メモリを役割に失敗");
+ clean_up(ctx, in, out, gpgfile, gpgpath);
+ return NULL;
+ }
+
ssize_t read_bytes;
- bool islastnl = false;
+ int i = 0;
while ((read_bytes = gpgme_data_read(out, buffer, sizeof(buffer) - 1)) > 0) {
- fwrite(buffer, 1, read_bytes, stdout);
- if (buffer[read_bytes - 1] == '\n') {
- islastnl = true;
- }
+ memcpy(res + i, buffer, read_bytes);
+ i += read_bytes;
}
- if (!islastnl) {
- putchar('\n');
- }
+ res[i] = '\0';
// 掃除
clean_up(ctx, in, out, gpgfile, gpgpath);
+ return res;
}