-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlua-hashings-scm-1.rockspec
65 lines (56 loc) · 1.64 KB
/
lua-hashings-scm-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package = "lua-hashings"
version = "scm-1"
source = {
url = "git://github.com/user-none/lua-hashings.git"
}
description = {
summary = "Lua hashing library providing a variety of cryptographic hashs and related hash function",
homepage = "https://github.com/user-none/lua-hashings.git",
license = "MIT/X11",
detailed = [[
Lua-hashings provides a variety of cryptographically secure hashes and
hash related functions.
Hashes:
* adler32
* blake2b
* blake2s
* crc32
* md5
* ripemd160
* sha1
* sha256
* sha3_256
* sha3_512
* sha512
* whirlpool
Hash functions:
* hmac
* pbkdf2
]]
}
dependencies = {
"lua >= 5.3",
"lua-nums"
}
build = {
type = "builtin",
modules = {
["hashings"] = "hashings/init.lua",
["hashings.adler32"] = "hashings/adler32.lua",
["hashings.blake2b"] = "hashings/blake2b.lua",
["hashings.blake2s"] = "hashings/blake2s.lua",
["hashings.crc32"] = "hashings/crc32.lua",
["hashings.keccak"] = "hashings/keccak.lua",
["hashings.md5"] = "hashings/md5.lua",
["hashings.ripemd160"] = "hashings/ripemd160.lua",
["hashings.sha1"] = "hashings/sha1.lua",
["hashings.sha256"] = "hashings/sha256.lua",
["hashings.sha3_256"] = "hashings/sha3_256.lua",
["hashings.sha3_512"] = "hashings/sha3_512.lua",
["hashings.sha512"] = "hashings/sha512.lua",
["hashings.whirlpool"] = "hashings/whirlpool.lua",
["hashings.hmac"] = "hashings/hmac.lua",
["hashings.pbkdf2"] = "hashings/pbkdf2.lua"
}
}