Merge pull request #663 from NeoRaider/styleable-checkboxes
[project/luci.git] / libs / luci-lib-nixio / docsrc / nixio.crypto.lua
1 --- Cryptographical library.
2 module "nixio.crypto"
3
4 --- Create a hash object. 
5 -- @class function
6 -- @name nixio.crypto.hash
7 -- @param algo  Algorithm ["sha1", "md5"]
8 -- @return CryptoHash Object
9
10 --- Create a HMAC object. 
11 -- @class function
12 -- @name nixio.crypto.hmac
13 -- @param algo  Algorithm ["sha1", "md5"]
14 -- @param key   HMAC-Key
15 -- @return CryptoHash Object