diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-12-30 15:25:56 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-12-30 15:25:56 +0800 |
commit | f0f9a4ea4509dfb764a5dfebd5e86e679c8f4b03 (patch) | |
tree | 5e2c7fcd5acb1598d4398f29a6d48c4e4d834be8 /meta/3rd/OpenResty/library/resty.sha512.lua | |
parent | 789cb1598a53c615164a5df7a1c4056f7d4130eb (diff) | |
parent | 820aa1a56a8a4bdd8fc7098b1e7cff5dd190b2eb (diff) | |
download | lua-language-server-f0f9a4ea4509dfb764a5dfebd5e86e679c8f4b03.zip |
Merge remote-tracking branch 'origin/master' into multi-workspace
Diffstat (limited to 'meta/3rd/OpenResty/library/resty.sha512.lua')
-rw-r--r-- | meta/3rd/OpenResty/library/resty.sha512.lua | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/meta/3rd/OpenResty/library/resty.sha512.lua b/meta/3rd/OpenResty/library/resty.sha512.lua index 06ac143a..afa1e946 100644 --- a/meta/3rd/OpenResty/library/resty.sha512.lua +++ b/meta/3rd/OpenResty/library/resty.sha512.lua @@ -1,8 +1,10 @@ ---@meta -resty_sha512={} -function resty_sha512.final(self) end -function resty_sha512.new(self) end -function resty_sha512.reset(self) end -resty_sha512._VERSION="0.11" -function resty_sha512.update(self, s) end -return resty_sha512
\ No newline at end of file + +---@class resty.sha512 : resty.string.checksum +local sha512={} + +--- Create a new sha512 checksum object. +---@return resty.sha512 +function sha512:new() end + +return sha512
\ No newline at end of file |