]> Nishi Git Mirror - sp.git/commitdiff
ちんこ
author諏訪子 <suwako@076.moe>
Tue, 21 May 2024 12:52:25 +0000 (21:52 +0900)
committer諏訪子 <suwako@076.moe>
Tue, 21 May 2024 12:52:25 +0000 (21:52 +0900)
26 files changed:
.gitignore
CHANGELOG.md
LICENSE.txt
Makefile
README.md
main.c
src/addpass.c [moved from addpass.c with 75% similarity]
src/addpass.h [moved from addpass.h with 100% similarity]
src/base32.c [moved from base32.c with 100% similarity]
src/base32.h [moved from base32.h with 100% similarity]
src/chkpass.c [moved from chkpass.c with 74% similarity]
src/chkpass.h [moved from chkpass.h with 100% similarity]
src/delpass.c [moved from delpass.c with 68% similarity]
src/delpass.h [moved from delpass.h with 100% similarity]
src/genpass.c [moved from genpass.c with 65% similarity]
src/genpass.h [moved from genpass.h with 100% similarity]
src/initpass.c [moved from initpass.c with 67% similarity]
src/initpass.h [moved from initpass.h with 100% similarity]
src/listpass.c [moved from listpass.c with 79% similarity]
src/listpass.h [moved from listpass.h with 100% similarity]
src/otppass.c [moved from otppass.c with 72% similarity]
src/otppass.h [moved from otppass.h with 100% similarity]
src/showpass.c [moved from showpass.c with 77% similarity]
src/showpass.h [moved from showpass.h with 100% similarity]
src/yankpass.c [moved from yankpass.c with 75% similarity]
src/yankpass.h [moved from yankpass.h with 100% similarity]

index e8a713eb409fd702c8a631c0d5fbacd1a960cbf2..429bcfba93693d0b9e2cb1f2a5150d5491f30926 100644 (file)
@@ -1,4 +1,5 @@
 sp
 .ccls-cache
 *.o
-*.tar.gz
+release
+*.core
index 3339f368a7261ed6cf38db815a676f281a2c8332..af494c5d482873eba3524c6cae5c7dac3d310a01 100644 (file)
@@ -1,5 +1,12 @@
 # 1.3.0
 * 英訳の追加
+* GNU Make → BSD Make
+* GPLv2 → ISC
+* OpenBSD向けのリリースコマンドの追加
+* FreeBSD向けのリリースコマンドの追加
+* Linux向けのリリースコマンドの追加
+* 最新ルールに従い
+* NetBSD向けのリリースコマンドの追加
 
 # 1.2.0
 * やっとTOTP機能性を修正した
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c4d9131c23cb2daf2a19c248fbb333578d31b0db 100644 (file)
@@ -0,0 +1,14 @@
+Copyright © 2004-2011 by Internet Systems Consortium, Inc. ("ISC")
+Copyright © 2018-2024 by 076.moe
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provided that the above
+copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD
+TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
+CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
+ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
+SOFTWARE.
index d4d93d6fb017146349aa3b7dcd56b19e6ff52b38..a9db0b77b4c4c5c13537bfe03a91f6e1b605b1e0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1,28 @@
-UNAME_S := $(shell uname -s)
+UNAME_S!=uname -s
+UNAME_M!=uname -m
 
-NAME := $(shell cat main.c | grep "const char\* sofname" | awk '{print $$5}' | sed "s/\"//g" | sed "s/;//" )
-VERSION := $(shell cat main.c | grep "const char\* version" | awk '{print $$5}' | sed "s/\"//g" | sed "s/;//" )
+NAME!=cat main.c | grep "const char\* sofname" | awk '{print $$5}' | \
+       sed "s/\"//g" | sed "s/;//"
+VERSION!=cat main.c | grep "const char\* version" | awk '{print $$5}' | \
+       sed "s/\"//g" | sed "s/;//"
+PREFIX=/usr/local
+
+.if ${UNAME_S} == "FreeBSD"
+MANPREFIX=${PREFIX}/share/man
+.elif ${UNAME_S} == "Linux"
 PREFIX=/usr
 MANPREFIX=${PREFIX}/share/man
-ifeq ($(UNAME_S),FreeBSD)
-       PREFIX=/usr/local
-endif
-ifeq ($(UNAME_S),OpenBSD)
-       PREFIX=/usr/local
-       MANPREFIX=${PREFIX}/man
-endif
-ifeq ($(UNAME_S),NetBSD)
-       PREFIX=/usr/pkg
-endif
+.elif ${UNAME_S} == "NetBSD"
+PREFIX=/usr/pkg
+MANPREFIX=${PREFIX}/share/man
+.endif
+
 CC=cc
-FILES=main.c showpass.c yankpass.c addpass.c delpass.c listpass.c genpass.c initpass.c otppass.c base32.c chkpass.c
+FILES=main.c src/*.c
 CFLAGS=-Wall -Wextra -O3 -I${PREFIX}/include -L${PREFIX}/lib
+.if ${UNAME_S} == "NetBSD"
+CFLAGS+=-I/usr/local/include -L/usr/local/lib -I/usr/include -L/usr/lib
+.endif
 LDFLAGS=-lgpgme -lcrypto
 
 all:
@@ -27,12 +33,37 @@ clean:
        rm -f ${NAME}
 
 dist: clean
+       mkdir -p dist
        mkdir -p ${NAME}-${VERSION}
-       cp -R LICENSE.txt Makefile README.md CHANGELOG.md\
-               ${NAME}-completion.zsh ${NAME}.1\ *.c *.h ${NAME}-${VERSION}
-       tar zcfv ${NAME}-${VERSION}.tar.gz ${NAME}-${VERSION}
+       cp -R LICENSE.txt Makefile README.md CHANGELOG.md \
+               ${NAME}-completion.zsh ${NAME}.1 main.c src ${NAME}-${VERSION}
+       tar zcfv dist/${NAME}-${VERSION}.tar.gz ${NAME}-${VERSION}
        rm -rf ${NAME}-${VERSION}
 
+release-openbsd:
+       mkdir -p release
+       ${CC} ${CFLAGS} -o release/${NAME}-${VERSION}-openbsd-${UNAME_M} ${FILES} \
+               -static -lgpgme -lcrypto -lc -lassuan -lgpg-error -lintl -liconv
+       strip release/${NAME}-${VERSION}-openbsd-${UNAME_M}
+
+release-freebsd:
+       mkdir -p release
+       ${CC} ${CFLAGS} -o release/${NAME}-${VERSION}-freebsd-${UNAME_M} ${FILES} \
+               -static -lgpgme -lcrypto -lc -lassuan -lgpg-error -lthr -lintl
+       strip release/${NAME}-${VERSION}-freebsd-${UNAME_M}
+
+release-netbsd:
+       mkdir -p release
+       ${CC} ${CFLAGS} -o release/${NAME}-${VERSION}-netbsd-${UNAME_M} ${FILES} \
+               -static -lgpgme -lcrypto -lcrypt -lc -lassuan -lgpg-error -lintl
+       strip release/${NAME}-${VERSION}-netbsd-${UNAME_M}
+
+release-linux:
+       mkdir -p release
+       ${CC} ${CFLAGS} -o release/${NAME}-${VERSION}-linux-${UNAME_M} ${FILES} \
+               -static -lgpgme -lcrypto -lc -lassuan -lgpg-error
+       strip release/${NAME}-${VERSION}-linux-${UNAME_M}
+
 install: all
        mkdir -p ${DESTDIR}${PREFIX}/bin
        cp -f ${NAME} ${DESTDIR}${PREFIX}/bin
index 5d9bf3c51174e1a410cf44c434e0ad0425394d13..146487d7e29a4163028d9d4f17697e7036e5905a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -89,8 +89,10 @@ $ sp -d 076.moe/suwako
 
 ## TOTP(ワンタイムパスワード)
 ### QRコードから
-QRコードをダウンロードし、zbarimgを使用して「QR-Code:」以降の部分をコピーし、spに追加して下さい。\
-`sp -a`を実行すると、「パスワード」を聞かれますが、TOTPの場合は「otpauth://」から始まる文字列をコピペして下さい。
+QRコードをダウンロードし、zbarimgを使用して「QR-Code:」以降の部分をコピーし、
+spに追加して下さい。\
+`sp -a`を実行すると、「パスワード」を聞かれますが、
+TOTPの場合は「otpauth://」から始まる文字列をコピペして下さい。
 ```sh
 $ zbarimg -q gitler.png
 QR-Code:otpauth://totp/Gitler%20%28gitler.moe%29:suwako?algorithm=SHA1&digits=6&issuer=Gitler%20%28gitler.moe%29&period=30&secret=〇〇
diff --git a/main.c b/main.c
index 756400624fc149678c82ae5f31e07388873bee27..ed133475dba6f52913d5a78ed3315fd7f22d384f 100644 (file)
--- a/main.c
+++ b/main.c
@@ -5,15 +5,15 @@
 
 #include <gpgme.h>
 
-#include "initpass.h"
-#include "showpass.h"
-#include "yankpass.h"
-#include "listpass.h"
-#include "chkpass.h"
-#include "addpass.h"
-#include "delpass.h"
-#include "genpass.h"
-#include "otppass.h"
+#include "src/initpass.h"
+#include "src/showpass.h"
+#include "src/yankpass.h"
+#include "src/listpass.h"
+#include "src/chkpass.h"
+#include "src/addpass.h"
+#include "src/delpass.h"
+#include "src/genpass.h"
+#include "src/otppass.h"
 
 const char* sofname = "sp";
 const char* version = "1.3.0";
@@ -22,16 +22,40 @@ void helpme() {
   printf("076 %s %s - シンプルなパスワードマネージャー\n", sofname, version);
   printf("https://076.moe/ | https://gitler.moe/suwako/%s\n\n", sofname);
   puts  ("使い方:");
-  printf("%s -i <gpg-id>               :GPGと使ってパスワードストレージを初期設定\n", sofname);
+  printf(
+    "%s -i <gpg-id>               :GPGと使ってパスワードストレージを初期設定\n",
+    sofname
+  );
   printf("%s -s <パスワード名>         :パスワードを表示\n", sofname);
-  printf("%s -y <パスワード名>         :パスワードを表示せずクリップボードにコピーする\n", sofname);
+  printf(
+    "%s %s%s\n",
+    sofname,
+    "-y <パスワード名>         :",
+    "パスワードを表示せずクリップボードにコピーする"
+  );
   printf("%s -l                        :パスワード一覧を表示\n", sofname);
-  printf("%s -c                        :複数サイトで同じパスワードを利用かどうかの確認\n", sofname);
+  printf(
+    "%s %s%s\n",
+    sofname,
+    "-c                        :",
+    "複数サイトで同じパスワードを利用かどうかの確認"
+  );
   printf("%s -a <パスワード名>         :パスワードを追加\n", sofname);
   printf("%s -d <パスワード名>         :パスワードを削除\n", sofname);
   printf("%s -e <パスワード名>         :パスワードを変更\n", sofname);
-  printf("%s -g <文字数> [risk|secure] :希望文字数でパスワードをランダムに作成する。risk=英数字のみ(不安)、secure=英数字+特別文字(デフォルト)を使用\n", sofname);
-  printf("%s -o <パスワード名>         :ワンタイムパスワード(TOTP)を表示。存在しなければ、創作する\n", sofname);
+  printf(
+    "%s %s%s%s\n",
+    sofname,
+    "-g <文字数> [risk|secure] :",
+    "希望文字数でパスワードをランダムに作成する。",
+    "risk=英数字のみ(不安)、secure=英数字+特別文字(デフォルト)を使用"
+  );
+  printf(
+    "%s %s%s\n",
+    sofname,
+    "-o <パスワード名>         :",
+    "ワンタイムパスワード(TOTP)を表示。存在しなければ、創作する"
+  );
   printf("%s -h                        :ヘルプを表示\n", sofname);
   printf("%s -v                        :バージョンを表示\n", sofname);
 }
@@ -41,16 +65,48 @@ void helpme_en() {
   printf("https://076.moe/ | https://gitler.moe/suwako/%s\n", sofname);
   puts  ("When reporting issues, please report in Japanese.\n");
   puts  ("Usage:");
-  printf("%s -i <gpg-id>                          : First setting for using GPG and password storage\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 %s%s\n",
+    sofname,
+    "-i <gpg-id>                          : ",
+    "First setting for using GPG and password storage"
+  );
+  printf(
+    "%s -s <Password name>                   : Show password\n", sofname
+  );
+  printf(
+    "%s %s%s\n",
+    sofname,
+    "-y <Password name>                   : ",
+    "Copy password to clipboard without show"
+  );
+  printf(
+    "%s %s\n",
+    sofname,
+    "-l                                   : Show me list of password"
+  );
+  printf(
+    "%s %s%s\n",
+    sofname,
+    "-c                                   : ",
+    "Check if you use the same password on multiple website"
+  );
   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);
-  printf("%s -g <Characters amount> [risk|secure] : Randomly make password with hoped amount. Using risk = only english letter and number (abnoxious), secure = english letter and digit + special character (default)\n", sofname);
-  printf("%s -o <Password name>                   : Show one time password. If not exist, construct\n", sofname);
+  printf("%s %s%s%s%s\n",
+    sofname,
+    "-g <Characters amount> [risk|secure] : ",
+    "Randomly make password with hoped amount.",
+    "Using risk = only english letter and number (abnoxious),",
+    "secure = english letter and digit + special character (default)"
+  );
+  printf(
+    "%s %s%s\n",
+    sofname,
+    "-o <Password name>                   : ",
+    "Show one time password. If not exist, construct"
+  );
   printf("%s -h                                   : Show help\n", sofname);
   printf("%s -v                                   : Show version\n", sofname);
 }
@@ -60,7 +116,8 @@ char* getfullpath(char* arg) {
 
   char* homedir = getenv("HOME");
   if (homedir == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting home directory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to getting home directory");
     else perror("ホームディレクトリを受取に失敗");
     return NULL;
   }
@@ -76,7 +133,8 @@ char* getfullpath(char* arg) {
 
   fullPath = (char*)malloc(fullPathLen);
   if (fullPath == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリの役割に失敗");
     return NULL;
   }
similarity index 75%
rename from addpass.c
rename to src/addpass.c
index cd5c72a0c9a134d255ad7d12d9a2ce996448c414..1bc635e92d03a3a91e416362cae5ad82adc7e05a 100644 (file)
--- a/addpass.c
@@ -79,7 +79,8 @@ void addpass(char* file) {
   // パスを準備
   char* homedir = getenv("HOME");
   if (homedir == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to retrieving home directory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to retrieving home directory");
     else perror("ホームディレクトリを受取に失敗");
     return;
   }
@@ -93,7 +94,8 @@ void addpass(char* file) {
   int alllen = snprintf(NULL, 0, "%s%s%s%s", homedir, basedir, file, ext) + 1;
   char* gpgpathchk = malloc(alllen);
   if (gpgpathchk == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリを割当に失敗");
     return;
   }
@@ -101,24 +103,38 @@ void addpass(char* file) {
   // ファイルが既に存在するかどうか確認
   snprintf(gpgpathchk, alllen, "%s%s%s%s", homedir, basedir, file, ext);
   if (access(gpgpathchk, F_OK) != -1) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0)  fprintf(stderr, "Password already exist.\nFor edit, please run ' sp -e %s '.\n", file);
-    else fprintf(stderr, "パスワードが既に存在しています。\n変更するには、「 sp -e %s 」を実行して下さい。\n", file);
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      fprintf(
+        stderr,
+        "Password already exist.\nFor edit, please run ' sp -e %s '.\n",
+        file
+      );
+    else
+      fprintf(
+        stderr,
+        "%s\n変更するには、「 sp -e %s 」を実行して下さい。\n",
+        "パスワードが既に存在しています。",
+        file
+      );
     free(gpgpathchk);
     return;
   }
   free(gpgpathchk);
 
   // パスワードを受け取る
-  if (lang != NULL && strncmp(lang, "en", 2) == 0) getpasswd("Password: ", pass, sizeof(pass));
+  if (lang != NULL && strncmp(lang, "en", 2) == 0)
+    getpasswd("Password: ", pass, sizeof(pass));
   else getpasswd("パスワード: ", pass, sizeof(pass));
   puts("");
-  if (lang != NULL && strncmp(lang, "en", 2) == 0) getpasswd("Password (for verification): ", knin, sizeof(knin));
+  if (lang != NULL && strncmp(lang, "en", 2) == 0)
+    getpasswd("Password (for verification): ", knin, sizeof(knin));
   else getpasswd("パスワード(確認用): ", knin, sizeof(knin));
   puts("");
 
   // パスワードが一致するかどうか確認
   if (strcmp(pass, knin) != 0) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Password does not match. Ending...");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Password does not match. Ending...");
     else perror("パスワードが一致していません。終了…");
     return;
   }
@@ -138,7 +154,8 @@ void addpass(char* file) {
   // GPGMEを創作
   err = gpgme_new(&ctx);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to generating GPGME: %s\n", gpgme_strerror(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;
   }
@@ -146,7 +163,8 @@ void addpass(char* file) {
   // GPGMEは非対話的モードに設定
   err = gpgme_set_pinentry_mode(ctx, GPGME_PINENTRY_MODE_LOOPBACK);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to setting pinentry mode: %s\n", gpgme_strerror(err));
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      fprintf(stderr, "Failed to setting pinentry mode: %s\n", gpgme_strerror(err));
     else fprintf(stderr, "pinentryモードを設定に失敗: %s\n", gpgme_strerror(err));
     gpgme_release(ctx);
     return;
@@ -155,8 +173,10 @@ void addpass(char* file) {
   // パスワードからデータオブジェクトを創作
   err = gpgme_data_new_from_mem(&in, pass, strlen(pass), 0);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to making data object: %s\n", gpgme_strerror(err));
-    else fprintf(stderr, "データオブジェクトを創作に失敗: %s\n", gpgme_strerror(err));
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      fprintf(stderr, "Failed to making data object: %s\n", gpgme_strerror(err));
+    else
+      fprintf(stderr, "データオブジェクトを創作に失敗: %s\n", gpgme_strerror(err));
     gpgme_release(ctx);
     return;
   }
@@ -182,7 +202,8 @@ void addpass(char* file) {
 
   char* keyid = malloc(256);
   if (!fgets(keyid, 256, keyfile)) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0)  perror("Failed to reading key ID");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to reading key ID");
     else perror("鍵IDを読込に失敗");
     fclose(keyfile);
     free(keyid);
@@ -194,7 +215,8 @@ void addpass(char* file) {
 
   err = gpgme_get_key(ctx, keyid, &key[0], 0);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to getting key: %s\n", gpgme_strerror(err));
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      fprintf(stderr, "Failed to getting key: %s\n", gpgme_strerror(err));
     else fprintf(stderr, "鍵を受取に失敗: %s\n", gpgme_strerror(err));
     free(keyid);
     return;
@@ -212,7 +234,8 @@ void addpass(char* file) {
   // 暗号化
   err = gpgme_op_encrypt(ctx, &key[0], GPGME_ENCRYPT_ALWAYS_TRUST, in, out);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to encrypt: %s\n", gpgme_strerror(err));
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      fprintf(stderr, "Failed to encrypt: %s\n", gpgme_strerror(err));
     else fprintf(stderr, "暗号化に失敗: %s\n", gpgme_strerror(err));
     cleanup(ctx, key[0], in, out);
     return;
@@ -222,7 +245,8 @@ void addpass(char* file) {
   char* gpgpath = malloc(alllen);
   if (gpgpath == NULL) {
     cleanup(ctx, key[0], in, out);
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリを割当に失敗");
     return;
   }
@@ -238,7 +262,8 @@ void addpass(char* file) {
     if (mkdir_r(dirpath, 0755) != 0) {
       free(gpgpath);
       cleanup(ctx, key[0], in, out);
-      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to constructing directory");
+      if (lang != NULL && strncmp(lang, "en", 2) == 0)
+        perror("Failed to constructing directory");
       else perror("ディレクトリを創作に失敗");
       return;
     }
@@ -249,7 +274,8 @@ void addpass(char* file) {
   if (stat(gpgpath, &statbuf) == 0) {
     free(gpgpath);
     cleanup(ctx, key[0], in, out);
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Password is already exist");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Password is already exist");
     else perror("パスワードは既に存在しています");
     return;
   }
@@ -271,7 +297,8 @@ void addpass(char* file) {
   // データが保存したかどうか確認
   ssize_t encrypted_data_size = gpgme_data_seek(out, 0, SEEK_END);
   if (encrypted_data_size <= 0) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to saving the data");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to saving the data");
     else perror("データを保存に失敗");
     fclose(gpgfile);
     free(gpgpath);
@@ -287,7 +314,8 @@ void addpass(char* file) {
 
   while ((read_bytes = gpgme_data_read(out, buffer, sizeof(buffer))) > 0) {
     if (fwrite(buffer, 1, (size_t)read_bytes, gpgfile) != (size_t)read_bytes) {
-      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to writing password");
+      if (lang != NULL && strncmp(lang, "en", 2) == 0) 
+        perror("Failed to writing password");
       else perror("パスワードを書き込みに失敗");
       free(gpgpath);
       cleanup(ctx, key[0], in, out);
@@ -300,6 +328,7 @@ void addpass(char* file) {
   free(gpgpath);
   cleanup(ctx, key[0], in, out);
 
-  if (lang != NULL && strncmp(lang, "en", 2) == 0) puts("I could save the password");
+  if (lang != NULL && strncmp(lang, "en", 2) == 0)
+    puts("I could save the password");
   else puts("パスワードを保存出来ました");
 }
similarity index 100%
rename from addpass.h
rename to src/addpass.h
similarity index 100%
rename from base32.c
rename to src/base32.c
similarity index 100%
rename from base32.h
rename to src/base32.h
similarity index 74%
rename from chkpass.c
rename to src/chkpass.c
index 976efbb5d00b0ae8fbd827705702c586f7ac7bb8..c4126790975cd3c5527954ef52e5aa6621579f71 100644 (file)
--- a/chkpass.c
@@ -19,7 +19,8 @@ void chkpass(char* basePath) {
   // パスワードを保存する
   struct PassList* allpass = malloc(2048 * sizeof(struct PassList));
   if (allpass == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリを役割に失敗");
     return;
   }
@@ -27,7 +28,8 @@ void chkpass(char* basePath) {
   struct dirent* entry;
   DIR* dir = opendir(basePath);
   if (!dir) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Could not opening directory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Could not opening directory");
     else perror("ディレクトリを開けられません");
     free(allpass);
     return;
@@ -43,14 +45,16 @@ void chkpass(char* basePath) {
     char path[1000];
     int needed = snprintf(path, sizeof(path), "%s/%s", basePath, entry->d_name);
     if (needed >= (int)sizeof(path) || needed < 0) {
-      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Error: Path is too long, or failed to getting lenth");
+      if (lang != NULL && strncmp(lang, "en", 2) == 0)
+        perror("Error: Path is too long, or failed to getting lenth");
       else perror("エラー:パスが長すぎる、又は長さを受取に失敗");
       continue;
     }
 
     struct stat statbuf;
     if (stat(path, &statbuf) == -1) {
-      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to reading file status");
+      if (lang != NULL && strncmp(lang, "en", 2) == 0)
+        perror("Failed to reading file status");
       else perror("ファイル状況を読込に失敗");
       continue;
     }
@@ -71,8 +75,10 @@ void chkpass(char* basePath) {
       break;
     }
 
-    strcpy(allpass[i].filepath, spath);
-    strcpy(allpass[i].password, showpass(spath));
+    strlcpy(allpass[i].filepath, spath, strlen(allpass[i].filepath));
+    if (strstr(spath, ".gpg-id")) continue;
+    printf("spath: %s\n", spath);
+    strlcpy(allpass[i].password, showpass(spath), strlen(allpass[i].password));
     i++;
   }
 
similarity index 100%
rename from chkpass.h
rename to src/chkpass.h
similarity index 68%
rename from delpass.c
rename to src/delpass.c
index 2f20ed0c1cc86f97bbf232849cc7129b6a10392d..3f77eb8c7b87d53f1a33ebf518dee2c9eb3092fc 100644 (file)
--- a/delpass.c
@@ -12,7 +12,8 @@ int delpass(char* file, int force) {
   char pwfile[512];
   char* homedir = getenv("HOME");
   if (homedir == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting home directory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to getting home directory");
     else perror("ホームディレクトリを受取に失敗");
     return -1;
   }
@@ -23,7 +24,8 @@ int delpass(char* file, int force) {
   int alllen = snprintf(NULL, 0, "%s%s%s%s", homedir, basedir, file, ext) + 1;
   char* gpgpathchk = malloc(alllen);
   if (gpgpathchk == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリを割当に失敗");
     return -1;
   }
@@ -31,23 +33,34 @@ int delpass(char* file, int force) {
   // ファイルが既に存在するかどうか確認
   snprintf(gpgpathchk, alllen, "%s%s%s%s", homedir, basedir, file, ext);
   if (access(gpgpathchk, F_OK) != 0) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Password does not exist");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Password does not exist");
     else perror("パスワードが存在しません");
     free(gpgpathchk);
     return -1;
   }
   free(gpgpathchk);
 
-  int needed = snprintf(pwfile, sizeof(pwfile), "%s%s%s%s", homedir, basedir, file, ext);
+  int needed = snprintf(
+    pwfile,
+    sizeof(pwfile),
+    "%s%s%s%s",
+    homedir,
+    basedir,
+    file,
+    ext
+  );
   if (needed >= (int)sizeof(pwfile)) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Error: Path is too long");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Error: Path is too long");
     else perror("エラー:パスが長すぎる");
     return -1;
   }
 
   // 削除を確認する
-  if (force == 0) { // パスワードの変更のばあい、確認は不要
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) printf("Is it really good if I delete the password '%s'? (y/N): ", file);
+  if (force == 0) { // パスワードの変更の場合、確認は不要
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      printf("Is it really good if I delete the password '%s'? (y/N): ", file);
     printf("パスワード「%s」を本当に削除する事が宜しいでしょうか? (y/N): ", file);
     int confirm = getchar();
     if (confirm != 'y' && confirm != 'Y') {
@@ -61,7 +74,8 @@ int delpass(char* file, int force) {
   }
 
   if (unlink(pwfile) == -1) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Password cannot be delete");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Password cannot be delete");
     else perror("パスワードを削除出来ませんですた");
     return -1;
   }
similarity index 100%
rename from delpass.h
rename to src/delpass.h
similarity index 65%
rename from genpass.c
rename to src/genpass.c
index ac7617b89e01c60650b48424915df4f3676a1e0e..ab6f320bb86366ae80bf6a8d9789de745f6cf03f 100644 (file)
--- a/genpass.c
@@ -7,13 +7,16 @@
 void genpass(int count, bool issecure) {
   char *lang = getenv("SP_LANG");
 
-  const char* charset_risky = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
-  const char* charset_secure = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!\"#$%&'()=~-^\\|_@`[{]};:+*<>,./?";
+  const char* charset_risky =
+    "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
+  const char* charset_secure =
+    "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!\"#$%&'()=~-^\\|_@`[{]};:+*<>,./?";
   const char* charset = issecure ? charset_secure : charset_risky;
 
   FILE *fp = fopen("/dev/random", "rb");
   if (fp == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Could not opening /dev/random");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Could not opening /dev/random");
     else perror("/dev/randomを開けられませんでした");
     exit(EXIT_FAILURE);
   }
similarity index 100%
rename from genpass.h
rename to src/genpass.h
similarity index 67%
rename from initpass.c
rename to src/initpass.c
index b073559a4173fe57ff93eeb0d0370e65175cb1c8..374f22bfb67c2d502fd27fb0a74e34bf39738c46 100644 (file)
@@ -12,7 +12,8 @@ void initpass(char* gpgid) {
 
   char* homedir = getenv("HOME");
   if (homedir == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting home directory.");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to getting home directory.");
     else perror("ホームディレクトリを受取に失敗。");
     return;
   }
@@ -22,7 +23,8 @@ void initpass(char* gpgid) {
   snprintf(dirpath, sizeof(dirpath), "%s%s", homedir, basedir);
 
   if (mkdir_r(dirpath, 0755) != 0 && errno != EEXIST) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to creating directory.");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to creating directory.");
     else perror("ディレクトリを作成に失敗。");
     return;
   }
@@ -32,27 +34,31 @@ void initpass(char* gpgid) {
 
   struct stat statbuf;
   if (stat(gpgidpath, &statbuf) == 0) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror(".gpg-id file is already exist.");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror(".gpg-id file is already exist.");
     else perror(".gpg-idファイルは既に存在します。");
     return;
   }
 
   FILE* gpgidfile = fopen(gpgidpath, "w");
   if (gpgidfile == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to writing .gpg-id file.");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to writing .gpg-id file.");
     else perror(".gpg-idファイルを書き込めません。");
     fclose(gpgidfile);
     return;
   }
 
   if (fputs(gpgid, gpgidfile) == EOF) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to writing .gpg-id file.");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to writing .gpg-id file.");
     else perror(".gpg-idファイルへの書き込みに失敗しました。");
     fclose(gpgidfile);
     return;
   }
 
   fclose(gpgidfile);
-  if (lang != NULL && strncmp(lang, "en", 2) == 0) puts("First time setup was complete.");
+  if (lang != NULL && strncmp(lang, "en", 2) == 0)
+    puts("First time setup was complete.");
   else puts("初期設定に完了しました。");
 }
similarity index 100%
rename from initpass.h
rename to src/initpass.h
similarity index 79%
rename from listpass.c
rename to src/listpass.c
index 0b18a6fd9361194350d483f74d2f1b39ebc200ae..38df3954543d22c5a24d6e3326b3a22dbdb3a9be 100644 (file)
@@ -12,7 +12,8 @@ void listpass(char* basePath, int level) {
   struct dirent* entry;
   DIR* dir = opendir(basePath);
   if (!dir) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Could not opening directory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Could not opening directory");
     else perror("ディレクトリを開けられません");
     return;
   }
@@ -25,14 +26,16 @@ void listpass(char* basePath, int level) {
     char path[1000];
     int needed = snprintf(path, sizeof(path), "%s/%s", basePath, entry->d_name);
     if (needed >= (int)sizeof(path) || needed < 0) {
-      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Error: Path is too long, or failed to getting lenth");
+      if (lang != NULL && strncmp(lang, "en", 2) == 0)
+        perror("Error: Path is too long, or failed to getting lenth");
       else perror("エラー:パスが長すぎる、又は長さを受取に失敗");
       continue;
     }
 
     struct stat statbuf;
     if (stat(path, &statbuf) == -1) {
-      if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to reading file status");
+      if (lang != NULL && strncmp(lang, "en", 2) == 0)
+        perror("Failed to reading file status");
       else perror("ファイル状況を読込に失敗");
       continue;
     }
similarity index 100%
rename from listpass.h
rename to src/listpass.h
similarity index 72%
rename from otppass.c
rename to src/otppass.c
index a6a31484293882e730d3c649ef5827054b39a07b..5f324491847d67cfa6891235d94b966fdd30aba4 100644 (file)
--- a/otppass.c
@@ -12,7 +12,8 @@ unsigned char* extract_secret(const char* otpauth_url, size_t* decoded_len) {
 
   const char* secret_start = strstr(otpauth_url, "secret=");
   if (!secret_start) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("In the middle of the OTPAuth URL, could not found secret");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("In the middle of the OTPAuth URL, could not found secret");
     else perror("OTPAuth URLの中に、シークレットを見つけられませんでした");
     return NULL;
   }
@@ -28,7 +29,8 @@ unsigned char* extract_secret(const char* otpauth_url, size_t* decoded_len) {
   }
 
   if (secret_end < secret_start) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Illegal secret range");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Illegal secret range");
     else perror("不正なシークレットの距離");
     return NULL;
   }
@@ -37,7 +39,8 @@ unsigned char* extract_secret(const char* otpauth_url, size_t* decoded_len) {
   char* secret_encoded = (char*)malloc(secret_len + 1);
 
   if (secret_encoded == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリの役割に失敗");
     return NULL;
   }
@@ -49,7 +52,8 @@ unsigned char* extract_secret(const char* otpauth_url, size_t* decoded_len) {
   free(secret_encoded);
 
   if (!secret_decoded) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to decrypting of the BASE32");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to decrypting of the BASE32");
     else perror("BASE32の復号化に失敗");
     return NULL;
   }
@@ -61,7 +65,15 @@ uint32_t generate_totp(const char *secret, uint64_t counter) {
   counter = htobe64(counter);
 
   unsigned char hash[SHA_DIGEST_LENGTH];
-  HMAC(EVP_sha1(), secret, strlen(secret), (unsigned char *)&counter, sizeof(counter), hash, NULL);
+  HMAC(
+    EVP_sha1(),
+    secret,
+    strlen(secret),
+    (unsigned char *)&counter,
+    sizeof(counter),
+    hash,
+    NULL
+  );
 
   int offset = hash[SHA_DIGEST_LENGTH - 1] & 0x0F;
   uint32_t truncated_hash =
@@ -84,35 +96,40 @@ void otppass(char* file) {
   gpgme_check_version(NULL);
   err = gpgme_new(&ctx);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to generating the GPG");  
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to generating the GPG");  
     else perror("GPGMEを創作に失敗"); 
     exit(1);
   }
 
   err = gpgme_data_new_from_file(&in, file, 1);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to reading the GPG file");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to reading the GPG file");
     else perror("GPGファイルを読込に失敗");
     exit(1);
   }
 
   err = gpgme_data_new(&out);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to reading the GPG data");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to reading the GPG data");
     else perror("GPGデータを読込に失敗");
     exit(1);
   }
 
   err = gpgme_op_decrypt(ctx, in, out);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to decrypting the GPG");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to decrypting the GPG");
     else perror("GPGを復号化に失敗");
     exit(1);
   }
 
   char* secret = gpgme_data_release_and_get_mem(out, &secret_len);
   if (!secret) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting the GPG");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to getting the GPG");
     else perror("GPGを受取に失敗");
     exit(1);
   }
@@ -120,7 +137,8 @@ void otppass(char* file) {
   size_t decoded_len;
   unsigned char* secret_decoded = extract_secret(secret, &decoded_len);
   if (!secret_decoded) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to decoding or exporting secret");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to decoding or exporting secret");
     else perror("シークレットの抽出又はデコードに失敗しました");
     free(secret);
     exit(1);
similarity index 100%
rename from otppass.h
rename to src/otppass.h
similarity index 77%
rename from showpass.c
rename to src/showpass.c
index 830573433cd4891c786a17b0ed01705e643b6f06..670b429c4cc39e382e3f61cb0a49566a84fd6b54 100644 (file)
@@ -8,7 +8,13 @@
 
 #include "showpass.h"
 
-void clean_up(gpgme_ctx_t ctx, gpgme_data_t in, gpgme_data_t out, FILE* gpgfile, char* gpgpath) {
+void clean_up(
+  gpgme_ctx_t ctx,
+  gpgme_data_t in,
+  gpgme_data_t out,
+  FILE* gpgfile,
+  char* gpgpath
+) {
   if (gpgfile) fclose(gpgfile);
   if (gpgpath) free(gpgpath);
   gpgme_data_release(in);
@@ -32,7 +38,8 @@ const char* showpass(char* file) {
   // GPGMEを創作
   err = gpgme_new(&ctx);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to generating GPGME: %s\n", gpgme_strerror(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 NULL;
   }
@@ -43,7 +50,8 @@ const char* showpass(char* file) {
   // 暗号化したタイルを開く
   char* homedir = getenv("HOME");
   if (homedir == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting home directory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to getting home directory");
     else perror("ホームディレクトリを受取に失敗");
     return NULL;
   }
@@ -53,7 +61,8 @@ const char* showpass(char* file) {
   int alllen = snprintf(NULL, 0, "%s%s%s%s", homedir, basedir, file, ext) + 1;
   char* gpgpath = malloc(alllen);
   if (gpgpath == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memeory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memeory");
     else perror("メモリを割当に失敗");
     return NULL;
   }
@@ -74,7 +83,8 @@ const char* showpass(char* file) {
 
   // ファイルからinデータオブジェクトを創作
   if (gpgme_data_new_from_stream(&in, gpgfile) != GPG_ERR_NO_ERROR) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to generating the GPGME data object");
+    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 NULL;
@@ -82,7 +92,8 @@ const char* showpass(char* file) {
 
   // outデータオブジェクトを創作
   if (gpgme_data_new(&out) != GPG_ERR_NO_ERROR) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to generating the GPGME data object");
+    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 NULL;
@@ -94,7 +105,8 @@ const char* showpass(char* file) {
   // 復号化して
   err = gpgme_op_decrypt(ctx, in, out);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to decrypting: %s\n", gpgme_strerror(err));
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      fprintf(stderr, "Failed to decrypting: %s\n", gpgme_strerror(err));
     else fprintf(stderr, "復号化に失敗: %s\n", gpgme_strerror(err));
 
     // 掃除
@@ -107,7 +119,8 @@ const char* showpass(char* file) {
   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");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリを役割に失敗");
     clean_up(ctx, in, out, gpgfile, gpgpath);
     return NULL;
similarity index 100%
rename from showpass.h
rename to src/showpass.h
similarity index 75%
rename from yankpass.c
rename to src/yankpass.c
index 6f67aba5693cf93b4dcc3ebe1a7e98440014381b..72367b5af3f0a66a8b9b8d03146b8001bde5ffb4 100644 (file)
@@ -14,7 +14,8 @@ void yankpass(char* file) {
 
   // Xセッションではない場合(例えば、SSH、TTY、Gayland等)、showpass()を実行して
   if (getenv("DISPLAY") == NULL) { 
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) puts("There is no X session, so executing 'sp -s'.");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      puts("There is no X session, so executing 'sp -s'.");
     else puts("Xセッションではありませんので、「sp -s」を実行します。");
     showpass(file);
     return;
@@ -33,7 +34,8 @@ void yankpass(char* file) {
   // GPGMEを創作
   err = gpgme_new(&ctx);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to generating GPGME: %s\n", gpgme_strerror(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;
   }
@@ -44,7 +46,8 @@ void yankpass(char* file) {
   // 暗号化したタイルを開く
   char* homedir = getenv("HOME");
   if (homedir == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to getting home directory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to getting home directory");
     else perror("ホームディレクトリを受取に失敗");
     return;
   }
@@ -54,7 +57,8 @@ void yankpass(char* file) {
   int alllen = snprintf(NULL, 0, "%s%s%s%s", homedir, basedir, file, ext) + 1;
   char* gpgpath = malloc(alllen);
   if (gpgpath == NULL) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Failed to allocating memory");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Failed to allocating memory");
     else perror("メモリを割当に失敗");
     return;
   }
@@ -80,7 +84,8 @@ void yankpass(char* file) {
   // 復号化して
   err = gpgme_op_decrypt(ctx, in, out);
   if (err) {
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) fprintf(stderr, "Failed to decryption: %s\n", gpgme_strerror(err));
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      fprintf(stderr, "Failed to decryption: %s\n", gpgme_strerror(err));
     else fprintf(stderr, "復号化に失敗: %s\n", gpgme_strerror(err));
 
     // 掃除
@@ -102,7 +107,8 @@ void yankpass(char* file) {
     gpgme_data_release(in);
     gpgme_data_release(out);
     gpgme_release(ctx);
-    if (lang != NULL && strncmp(lang, "en", 2) == 0) perror("Could not found a clipboard");
+    if (lang != NULL && strncmp(lang, "en", 2) == 0)
+      perror("Could not found a clipboard");
     else perror("クリップボードを見つけられませんでした");
     return;
   }
@@ -123,8 +129,18 @@ void yankpass(char* file) {
   pclose(pipe);
 
   // 45秒後、クリップボードから削除する
-  if (lang != NULL && strncmp(lang, "en", 2) == 0) puts("Added password to the clipboard.\nI will take it away from the clipboard after 45 second");
-  else puts("パスワードをクリップボードに追加しました。\n45秒後はクリップボードから取り消されます");
+  if (lang != NULL && strncmp(lang, "en", 2) == 0)
+    printf(
+      "%s\n%s",
+      "Added password to the clipboard.",
+      "I will take it away from the clipboard after 45 second"
+    );
+  else
+    printf(
+      "%s\n%s",
+      "パスワードをクリップボードに追加しました。",
+      "45秒後はクリップボードから取り消されます"
+    );
   sleep(45);
   system("echo -n | xclip -selection clipboard");
 
similarity index 100%
rename from yankpass.h
rename to src/yankpass.h