Kuey (日本語)


ファイルの暗号化・平文化を行う単純なライブラリです。


用例:

 Kuey = require("Kuey")
 local Encoded = Kuey.encode("Love is life!", "love2d") -- 文字列を鍵 "love2d" により暗号化します。
 print(Encoded)                                         -- 暗号化された文字列の表示。
 print(Kuey.decode(Encoded, "anykey"))                  -- 任意鍵による平文化を試みてから表示します。
 print(Kuey.decode(Encoded, "love2d"))                  -- 正しい鍵により文字列を平文化してから表示します。

出力:

 ©Ìý╩R═▀ÅÔ╬   ÿ╔ì
 Wps_ýT~!ic3P,
 Love is life!

利用可能関数:

 Kuey.encode(string, key) -- 暗号化 (encode) された文字列を返します。
 Kuey.decode(string, key) -- 平文化 (decode) された文字列を返します。
 Kuey.encodeFile(filename, key[, outputname]) -- outputname が定義された場合は暗号化 (encode) された文字列を返してからファイルへ書き込みます。
 Kuey.decodeFile(filename, key[, outputname]) -- outputname が定義された場合は平文化 (encode) された文字列を返してからファイルへ書き込みます。


**フォーラムの投稿はこちらです!**

そのほかの言語