manifest.lua (448B)
1 return { 2 name = "crypto", 3 developer = "luajitos", 4 version = "1.0.0", 5 category = "all", 6 description = "Command-line cryptographic utility for hashing, encryption, signing, and key derivation", 7 entry = "init.lua", 8 type = "cli", 9 autorun = true, 10 permissions = { 11 "stdio", -- Command-line output 12 "export", -- Export crypto library for other apps 13 "crypto" -- Access to crypto library 14 } 15 }