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