diff options
author | drry | 2009-02-09 17:59:27 +0000 |
---|---|---|
committer | drry | 2009-02-09 17:59:27 +0000 |
commit | 5274199dd09b7f2958b981c61e35889747d1a883 (patch) | |
tree | a9d3ebfe8c0c5b4d240b40d226fa10340aeebe74 /hash.js | |
parent | bbb937da50f9e70b46038019fc0eeeb9016fbe8e (diff) | |
download | vimperator-plugins-5274199dd09b7f2958b981c61e35889747d1a883.tar.bz2 |
* 誤字を修正しました。(SHA-385)
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@29810 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'hash.js')
-rw-r--r-- | hash.js | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -24,10 +24,10 @@ hash: let Algos = [ ["md2", "MD2 Algorithm"], ["md5", "MD5 Algorithm"], - ["sha1", "SHA1 Algorithm"], - ["sha256", "SHA256 Algorithm"], - ["sha384", "SHA385 Algorithm"], - ["sha512", "SHA512 Algorithm"], + ["sha1", "SHA1 Algorithm"], // SHA-1 + ["sha256", "SHA256 Algorithm"], // SHA-256 + ["sha384", "SHA384 Algorithm"], // SHA-384 + ["sha512", "SHA512 Algorithm"], // SHA-512 ]; function getStream(path) @@ -49,7 +49,7 @@ hash: commands.addUserCommand(["hash"], "hash of file", function(args){ if (args.length!=2) { - + liberator.echo("usage \":hash md2|md5|sha1|sha256|sha384|sha512 file-path\""); return false; } |