Replies: 2 comments
-
既存のコマンドの引数順番の多数決をとる(統一感を出す)と、大体以下のようになる感じですかね。
(不要なものは削除、複数ある場合もあり) 上記の順番と違うものは
|
Beta Was this translation helpful? Give feedback.
0 replies
-
v2.0 の話しなので可能性の話しとして。
verify <verify file> --user <github user> --sigfile <sign file>
verify <verify file> -u <github user> -s <sign file> Qiitadon の LTL で知ったのですが、POSIX で動くライブラリがあるようです。(オプション実装チャレンジしたけど、めんどいので)
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
以下が v1.0.0 f7e34f9 現在のコマンドの引数一覧です。
archive
<input file>
<output file>
]check
<github user>
<id_rsa>
checkkeylength
<github user>
dec
<private key>
<input file>
<output file>
enc
<github user>
<input file>
<output file>
]keygen
<email>
<keyname>
sign
<github user>
<private key>
<input file>
<output file>
]verify
<verify file>
<github user>
<sign file>
]コマンドを動詞、第 1 引数を対象というのがベースにあります。
しかし、
sign
で署名してからverify
で確認しようとすると、いささか引数の感覚がチャンポン気味になってしまいます。引数の順番は v2.0.0 で変更するとして、みなさんの意見を聞きたいです。
Beta Was this translation helpful? Give feedback.
All reactions