blob: afa1e946327eb740789eef87e9b7c42d057f7b2b (
plain)
1
2
3
4
5
6
7
8
9
10
|
---@meta
---@class resty.sha512 : resty.string.checksum
local sha512={}
--- Create a new sha512 checksum object.
---@return resty.sha512
function sha512:new() end
return sha512
|