diff options
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 |