Rockspec for Lua-AesFileEncrypt version 0.1.0 attached.
This is lua binding to
http://www.gladman.me.uk/cryptography_technology/fileencrypt

--------------------------
package = "AesFileEncrypt"
version = "0.1.0-1"

source = {
  url = "https://github.com/moteus/lua-AesFileEncrypt/archive/v0.1.0.zip";,
  dir = "lua-AesFileEncrypt-0.1.0",
}

description = {
  summary = "A simple file encryption library",
  homepage = "https://github.com/moteus/lua-AesFileEncrypt";,
  detailed = [[
Binding to Dr Brian Gladman's implementation.
Encryption libray use
  a. RFC2898 for key derivation (using HMAC-SHA1)
  b. AES in CTR mode for encryption
  c. HMAC-SHA1 for authentication
  d. A Random Data Pool based on Peter Gutmann's ideas
]];
  license = "GPL",
}

dependencies = {
  "lua >= 5.1",
}

build = {
  copy_directories = {"test"},

  type = "builtin",

  modules = {
    AesFileEncrypt = {
      sources = {
        'src/fileenc/aescrypt.c','src/fileenc/aeskey.c','src/fileenc/aestab.c',
        'src/fileenc/fileenc.c','src/fileenc/hmac.c','src/fileenc/prng.c',
        'src/fileenc/pwd2key.c','src/fileenc/sha1.c',
        'src/AesFileEncrypt.c','src/l52util.c',
      },
    },
  },
}




------------------------------------------------------------------------------
Try New Relic Now & We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app, & servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr
_______________________________________________
Luarocks-developers mailing list
Luarocks-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/luarocks-developers

Reply via email to