From 1e7902f65b999322567bee2b6bc8de38d7502f8e Mon Sep 17 00:00:00 2001 From: kikito Date: Mon, 6 Apr 2015 18:30:29 +0200 Subject: [PATCH] Revert "typo" This reverts commit 55cff74afcd80b87e9bd1474d68502bf40ce51a3. --- md5.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/md5.lua b/md5.lua index 1a94db2..f9a0e9a 100644 --- a/md5.lua +++ b/md5.lua @@ -129,7 +129,7 @@ else end bit_or = function(m, n) - return tbl2number(bits_or(to_bits(m), to_bits(n))) + return tbl2number(bits_or(tobits(m), tobits(n))) end bits_and = function(tbl_m, tbl_n) @@ -148,7 +148,7 @@ else end bit_and = function(m, n) - return tbl2number(bits_and(to_bits(m), to_bits(n))) + return tbl2number(bits_and(tobits(m), tobits(n))) end bits_xor = function(tbl_m, tbl_n) @@ -167,7 +167,7 @@ else end bit_xor = function(m, n) - return tbl2number(bits_xor(to_bits(m), to_bits(n))) + return tbl2number(bits_xor(tobits(m), tobits(n))) end bit_rshift = function(n, bits)