Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 246 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 246 Bytes

xor-lua

a simple lib to xor encrypt/decrypt a string

local xor = require('xor')

xor('message', 'key') -- returns the xor encrypted/decrypted string from 'message' on 'key'

There is a simple program that uses this lib on test.lua