diff options
Diffstat (limited to 'tests/test3.lua')
-rw-r--r-- | tests/test3.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/test3.lua b/tests/test3.lua new file mode 100644 index 0000000..b3b9eb9 --- /dev/null +++ b/tests/test3.lua @@ -0,0 +1,17 @@ +function test3() + print "testing rsa" + local bits = 2048 + local e = 65537 + local key = rsa:gen_key(bits, 65537) + --for k, v in pairs(key) do print(k.."=lcrypt.bigint(lcrypt.fromhex('"..lcrypt.tohex(tostring(v)).."'))") end + + msg = lcrypt.random(bits/8 - 1) + s = rsa:sign_oaep(msg, 'jello', key) + if rsa:verify_oaep(s, msg, 'jello', key) then + print "ok" + else + --for k, v in pairs(key) do print(k.."=lcrypt.bigint(lcrypt.fromhex('"..lcrypt.tohex(tostring(v)).."'))") end + error "rsa failure" + end +end +
\ No newline at end of file |