メッセージダイジェストの算出

love.data.hash

追加バージョン11.0削除バージョン-

指定したアルゴリズムのメッセージダイジェストを作成します。

function love.draw()
  s1 = love.data.encode("string","hex",love.data.hash("sha1","this is an apple."))
  s2 = love.data.encode("string","hex",love.data.hash("sha1","this is an apple!"))

  love.graphics.print(s1, 20, 20)
  love.graphics.print(s2, 20, 40)
end
メッセージダイジェストの算出